vim-autoformat/samples/csharp.cs

5 lines
205 B
C#
Raw Normal View History

2013-03-27 05:17:24 -04:00
using System; class Program { static int Main(string[] args) { Console.WriteLine(args[0]); int i = 0; i++; return 0; }
public int Foo() { switch (1) { case 1: int i = 0; default: int j = 1; }
}
}