Gyakorlás

This commit is contained in:
lego
2026-09-09 14:52:24 +02:00
parent aed00c3b52
commit 4fc7a99164
12 changed files with 248 additions and 0 deletions

10
Tombok2/Plus/Plus.csproj Normal file
View File

@@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

14
Tombok2/Plus/Program.cs Normal file
View File

@@ -0,0 +1,14 @@
namespace Plus
{
internal class Program
{
static void Main(string[] args)
{
int a = 10;
int b = a++;
int c = ++a;
Console.WriteLine($"B:{b},C:{c}");
}
}
}