mirror of
https://github.com/dotnet/intro-to-dotnet-web-dev.git
synced 2025-12-06 05:32:03 +01:00
Add feat: challenge 5 for C# referesher
This commit is contained in:
parent
7c8c6ac5c5
commit
bc495223d9
|
|
@ -0,0 +1,5 @@
|
||||||
|
int firstValue = 500;
|
||||||
|
int secondValue = 600;
|
||||||
|
int largerValue = Math.Max(firstValue, secondValue);
|
||||||
|
|
||||||
|
Console.WriteLine(largerValue);
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<TargetFramework>net6.0</TargetFramework>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
</Project>
|
||||||
Loading…
Reference in a new issue