Skip to content

Commit

Permalink
Updated degree symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkMichaelis committed Sep 1, 2023
1 parent ee0cc99 commit 3b6b57f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions src/Chapter06/Listing06.06.AccessingFields.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace AddisonWesley.Michaelis.EssentialCSharp.Chapter06.Listing06_06;
namespace AddisonWesley.Michaelis.EssentialCSharp.Chapter06.Listing06_06;

using Listing06_05;
using System;
Expand All @@ -18,10 +18,10 @@ public static void Main()
employee1.Salary = "Too Little";
IncreaseSalary(employee1);
Console.WriteLine(
"{0} {1}: {2}",
employee1.FirstName,
employee1.LastName,
employee1.Salary);
$"{
employee1.FirstName } {
employee1.LastName }: {
employee1.Salary }");
#endregion HIGHLIGHT
// ...
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace AddisonWesley.Michaelis.EssentialCSharp.Chapter09.Listing09_16.Tests;
namespace AddisonWesley.Michaelis.EssentialCSharp.Chapter09.Listing09_16.Tests;

using AddisonWesley.Michaelis.EssentialCSharp.Chapter09.Listing09_16;

Expand Down

0 comments on commit 3b6b57f

Please sign in to comment.