mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
488 B
25 lines
488 B
using System; |
|
using System.Collections; |
|
using System.Collections.Generic; |
|
|
|
namespace ICSharpCode.Decompiler.Tests.TestCases.Ugly |
|
{ |
|
internal class NoForEachStatement |
|
{ |
|
public static void SimpleNonGenericForeach(IEnumerable enumerable) |
|
{ |
|
foreach (object item in enumerable) |
|
{ |
|
Console.WriteLine(item); |
|
} |
|
} |
|
|
|
public static void SimpleForeachOverInts(IEnumerable<int> enumerable) |
|
{ |
|
foreach (int item in enumerable) |
|
{ |
|
Console.WriteLine(item); |
|
} |
|
} |
|
} |
|
}
|
|
|