Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,7 @@ node_modules/
_Pvt_Extensions

# Paket dependency manager
.paket
.paket/paket.exe
paket-files/

Expand Down
2 changes: 1 addition & 1 deletion csharp/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace csharp
public class Foo
{
public int Bar { get; set; }
public int Baz(int red, string green) => 0;
public int Baz(int red, string green) => 1;
}

class Program
Expand Down