Mono.VisualC.Interop.CppType.ForDelegate C# (CSharp) Метод

ForDelegate() публичный статический Метод

public static ForDelegate ( Type delType ) : CppType
delType System.Type
Результат CppType
		public static CppType ForDelegate (Type delType)
		{
			if (!typeof (Delegate).IsAssignableFrom (delType))
				throw new ArgumentException ("Argument must be a delegate type");

			throw new NotImplementedException ();
		}