Exemple #1
0
        public unsafe Method(Class owningClass, CppSharp.Parser.AST.Method method) : base(owningClass, method)
        {
            this.method      = method;
            this.OwningClass = owningClass;

            this.OwningClass.AssertNotNull();
            this.method.AssertNotNullAndOfType <CppSharp.Parser.AST.Method>();
        }
Exemple #2
0
 public unsafe Method(CppSharp.Parser.AST.Method method) : base(method)
 {
     this.method = method;
 }