]> git.ipfire.org Git - thirdparty/git.git/blob - t/t4018/csharp-exclude-iterations
Merge branch 'sj/userdiff-c-sharp'
[thirdparty/git.git] / t / t4018 / csharp-exclude-iterations
1 using System.Linq;
2
3 class Example
4 {
5 string Method(int RIGHT)
6 {
7 do { } while (true);
8 do MethodCall(
9 ); while (true);
10 while (true);
11 while (true) {
12 break;
13 }
14 for (int i = 0; i < 10; ++i)
15 {
16 }
17 foreach (int i in Enumerable.Range(0, 10))
18 {
19 }
20 int[] numbers = [5, 4, 1, 3, 9, 8, 6, 7, 2, 0];
21
22 return "ChangeMe";
23 }
24
25 string MethodCall(int a = 0, int b = 0) => "test";
26 }