Skip to content

Commit

Permalink
Update 230
Browse files Browse the repository at this point in the history
  • Loading branch information
JonthueM committed Aug 3, 2020
1 parent ebce41d commit 1744a04
Show file tree
Hide file tree
Showing 15 changed files with 20 additions and 2 deletions.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="chainingConstructors.cs" />
<Compile Include="Employee.cs" />
<Compile Include="Person.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
Expand Down
2 changes: 2 additions & 0 deletions 2020-step230-VarVarConstruct/Person.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,7 @@ namespace _2020_step221_VarVarConstruct
{
class Person
{
public string firstName { get; set; }
public string lastName { get; set; }
}
}
1 change: 1 addition & 0 deletions 2020-step230-VarVarConstruct/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ static void Main(string[] args)
Employee nameIDdept = new Employee("WAREON", 9071, "Defense");


Console.ReadLine();



Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" />
</startup>
</configuration>
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
90a1c46ccf508d8cfc3f51ca39b4f3e8fd0a1808
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
C:\Users\conne\OneDrive\Documents\GitHub\The-Tech-Academy-Basic-C-Sharp-Projects\2020-step230-VarVarConstruct\bin\Debug\2020-step221-VarVarConstruct.exe.config
C:\Users\conne\OneDrive\Documents\GitHub\The-Tech-Academy-Basic-C-Sharp-Projects\2020-step230-VarVarConstruct\bin\Debug\2020-step221-VarVarConstruct.exe
C:\Users\conne\OneDrive\Documents\GitHub\The-Tech-Academy-Basic-C-Sharp-Projects\2020-step230-VarVarConstruct\bin\Debug\2020-step221-VarVarConstruct.pdb
C:\Users\conne\OneDrive\Documents\GitHub\The-Tech-Academy-Basic-C-Sharp-Projects\2020-step230-VarVarConstruct\obj\Debug\2020-step230-VarVarConstruct.csprojAssemblyReference.cache
C:\Users\conne\OneDrive\Documents\GitHub\The-Tech-Academy-Basic-C-Sharp-Projects\2020-step230-VarVarConstruct\obj\Debug\2020-step230-VarVarConstruct.csproj.CoreCompileInputs.cache
C:\Users\conne\OneDrive\Documents\GitHub\The-Tech-Academy-Basic-C-Sharp-Projects\2020-step230-VarVarConstruct\obj\Debug\2020-step221-VarVarConstruct.exe
C:\Users\conne\OneDrive\Documents\GitHub\The-Tech-Academy-Basic-C-Sharp-Projects\2020-step230-VarVarConstruct\obj\Debug\2020-step221-VarVarConstruct.pdb
Binary file not shown.
Binary file modified 2020-step234-CatchThis/.vs/2020-step225-CatchThis/v16/.suo
Binary file not shown.
2 changes: 1 addition & 1 deletion 2020-step234-CatchThis/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ static void Main(string[] args)
int age;
age = Convert.ToInt32(Console.ReadLine());

if (age === 0)
if (age == 0)
{
throw new Exception("Please No Zero's");
}
Expand Down

0 comments on commit 1744a04

Please sign in to comment.