From ffa49588f0b354036336481e67ec2a9b5762de26 Mon Sep 17 00:00:00 2001 From: Dave Thomas Date: Wed, 21 Aug 2019 14:46:30 +0000 Subject: [PATCH 1/2] Update .gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 2d5e3ba..f7da284 100644 --- a/.gitignore +++ b/.gitignore @@ -300,6 +300,7 @@ node_modules/ _Pvt_Extensions # Paket dependency manager +.paket .paket/paket.exe paket-files/ From 8751d178b519519dd72d24d6320bb3665e4a5b08 Mon Sep 17 00:00:00 2001 From: Dave Thomas Date: Wed, 21 Aug 2019 14:50:21 +0000 Subject: [PATCH 2/2] update output --- csharp/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/Program.cs b/csharp/Program.cs index 7b0c550..784a539 100644 --- a/csharp/Program.cs +++ b/csharp/Program.cs @@ -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