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.
80 lines
1.6 KiB
80 lines
1.6 KiB
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt) |
|
// This code is distributed under MIT X11 license (for details please see \doc\license.txt) |
|
|
|
using System; |
|
using System.Collections.Generic; |
|
|
|
public static class DelegateConstruction |
|
{ |
|
public static void Test(this string a) |
|
{ |
|
} |
|
|
|
public static Action<string> ExtensionMethodUnbound() |
|
{ |
|
return new Action<string>(DelegateConstruction.Test); |
|
} |
|
|
|
public static Action ExtensionMethodBound() |
|
{ |
|
return new Action("abc".Test); |
|
} |
|
|
|
public static Action ExtensionMethodBoundOnNull() |
|
{ |
|
return new Action(((string)null).Test); |
|
} |
|
|
|
public static object StaticMethod() |
|
{ |
|
return new Func<Action>(DelegateConstruction.ExtensionMethodBound); |
|
} |
|
|
|
public static object InstanceMethod() |
|
{ |
|
return new Func<string>("hello".ToUpper); |
|
} |
|
|
|
public static object InstanceMethodOnNull() |
|
{ |
|
return new Func<string>(((string)null).ToUpper); |
|
} |
|
|
|
public static List<Action<int>> AnonymousMethodStoreWithinLoop() |
|
{ |
|
List<Action<int>> list = new List<Action<int>>(); |
|
for (int i = 0; i < 10; i++) |
|
{ |
|
int counter; |
|
list.Add(delegate(int x) |
|
{ |
|
counter = x; |
|
} |
|
); |
|
} |
|
return list; |
|
} |
|
|
|
public static List<Action<int>> AnonymousMethodStoreOutsideLoop() |
|
{ |
|
List<Action<int>> list = new List<Action<int>>(); |
|
int counter; |
|
for (int i = 0; i < 10; i++) |
|
{ |
|
list.Add(delegate(int x) |
|
{ |
|
counter = x; |
|
} |
|
); |
|
} |
|
return list; |
|
} |
|
|
|
public static Action StaticAnonymousMethodNoClosure() |
|
{ |
|
return delegate |
|
{ |
|
Console.WriteLine(); |
|
}; |
|
} |
|
}
|
|
|