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 ();
		}