Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/nanoFramework.CoreLibrary/System/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
[assembly: AssemblyProduct("nanoFramework mscorlib")]
[assembly: AssemblyCopyright("Copyright © nanoFramework Contributors 2017")]

[assembly: AssemblyNativeVersion("100.2.1.0")]
[assembly: AssemblyNativeVersion("100.2.2.0")]
15 changes: 13 additions & 2 deletions source/nanoFramework.CoreLibrary/System/Delegate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,19 @@ public extern MethodInfo Method
{
[MethodImpl(MethodImplOptions.InternalCall)]
get;
}

}

/// <summary>
/// Returns the invocation list of the delegate.
/// </summary>
/// <returns>
/// An array of delegates representing the invocation list of the current delegate.
/// </returns>
[MethodImpl(MethodImplOptions.InternalCall)]
#pragma warning disable S4200 // Native methods should be wrapped
public virtual extern Delegate[] GetInvocationList();
#pragma warning restore S4200 // Native methods should be wrapped

/// <summary>
/// Gets the class instance on which the current delegate invokes the instance method.
/// </summary>
Expand Down