Skip to content

Commit

Permalink
Add comment and remove white space
Browse files Browse the repository at this point in the history
  • Loading branch information
cvpfus committed Sep 19, 2023
1 parent 6eb5e7a commit c459b49
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion W2 D3/EventHandler/Subscriber.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ public Subscriber(string name)

public void GetNotification(object? sender, EventArgs e)
{

Console.WriteLine($"{_name} is getting notification from Youtuber ({sender}).");
}
}
2 changes: 1 addition & 1 deletion W2 D5/EqualityComparison/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ static void Main()
float num1 = 123.1f;
double num2 = 123.1;
EqualityClass<float, double> eq = new EqualityClass<float, double>();
Console.WriteLine(eq.isEqual(num1, num2));
Console.WriteLine(eq.isEqual(num1, num2)); // False

ChildClass child = new();
ParentClass parent = child;
Expand Down

0 comments on commit c459b49

Please sign in to comment.