mirror of
https://github.com/markjprice/cs11dotnet7.git
synced 2026-04-05 14:25:37 +00:00
Initial commit
This commit is contained in:
parent
e523533d17
commit
10cceacca6
50 changed files with 1280 additions and 0 deletions
14
vs4win/Chapter04/Debugging/Debugging.csproj
Normal file
14
vs4win/Chapter04/Debugging/Debugging.csproj
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Using Include="System.Console" Static="true" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
12
vs4win/Chapter04/Debugging/Program.cs
Normal file
12
vs4win/Chapter04/Debugging/Program.cs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
double a = 4.5;
|
||||
double b = 2.5;
|
||||
double answer = Add(a, b);
|
||||
|
||||
WriteLine($"{a} + {b} = {answer}");
|
||||
WriteLine("Press ENTER to end the app.");
|
||||
ReadLine(); // wait for user to press ENTER
|
||||
|
||||
double Add(double a, double b)
|
||||
{
|
||||
return a + b; // deliberate bug!
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue