Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Baulig <martin.baulig@xamarin.com>2013-03-07 01:33:50 +0400
committerMartin Baulig <martin.baulig@xamarin.com>2013-03-13 02:07:53 +0400
commit9f1535ea23d4cb4bf6ba9a976d01f3bea8b898aa (patch)
treebae99a82cf3eabb3e5cb6161ad2c2e6cd131a98a /mcs/class/System.ComponentModel.Composition.4.5/src
parent804acc091caa5b3fcd77e8704b9fb5c2a36eb03c (diff)
Add System.ComponentModel.Composition.4.5 to the mobile build.
Diffstat (limited to 'mcs/class/System.ComponentModel.Composition.4.5/src')
-rw-r--r--mcs/class/System.ComponentModel.Composition.4.5/src/ComponentModel/System/ComponentModel/Composition/Primitives/ExportedDelegate.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/mcs/class/System.ComponentModel.Composition.4.5/src/ComponentModel/System/ComponentModel/Composition/Primitives/ExportedDelegate.cs b/mcs/class/System.ComponentModel.Composition.4.5/src/ComponentModel/System/ComponentModel/Composition/Primitives/ExportedDelegate.cs
index 98c120987f9..18d81e994bb 100644
--- a/mcs/class/System.ComponentModel.Composition.4.5/src/ComponentModel/System/ComponentModel/Composition/Primitives/ExportedDelegate.cs
+++ b/mcs/class/System.ComponentModel.Composition.4.5/src/ComponentModel/System/ComponentModel/Composition/Primitives/ExportedDelegate.cs
@@ -42,6 +42,9 @@ namespace System.ComponentModel.Composition.Primitives
private Type CreateStandardDelegateType()
{
+#if MONOTOUCH
+ throw new NotImplementedException ();
+#else
ParameterInfo[] parameters = this._method.GetParameters();
// This array should contains a lit of all argument types, and the last one is the return type (could be void)
@@ -53,6 +56,7 @@ namespace System.ComponentModel.Composition.Primitives
}
return Expression.GetDelegateType(parameterTypes);
+#endif
}
}
}