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.
24 lines
554 B
24 lines
554 B
<?xml version="1.0" encoding="utf-8"?> |
|
<symbols> |
|
<files> |
|
<file id="1" name="ICSharpCode.Decompiler.Tests.TestCases.PdbGen\LambdaCapturing.cs" language="C#" checksumAlgorithm="SHA256"><![CDATA[using System; |
|
|
|
namespace ICSharpCode.Decompiler.Tests.TestCases.PdbGen; |
|
|
|
public class LambdaCapturing |
|
{ |
|
public static void Main(string[] args) |
|
{ |
|
int num = 4; |
|
int captured = Environment.TickCount + num; |
|
Test((int a, int b) => a + b + captured); |
|
} |
|
|
|
private static void Test(Func<int, int, int> p) |
|
{ |
|
p(1, 2); |
|
} |
|
} |
|
]]></file> |
|
</files> |
|
</symbols> |