Mono.VisualC.Interop.CppType.ForDelegate C# (CSharp) Méthode

ForDelegate() public static méthode

public static ForDelegate ( Type delType ) : CppType
delType System.Type
Résultat CppType
		public static CppType ForDelegate (Type delType)
		{
			if (!typeof (Delegate).IsAssignableFrom (delType))
				throw new ArgumentException ("Argument must be a delegate type");

			throw new NotImplementedException ();
		}