コード例 #1
0
ファイル: StmtVisitor.cs プロジェクト: tornado12345/CppSharp
        public virtual bool VisitCXXThrowExpr(CXXThrowExpr stmt)
        {
            if (!VisitExpr(stmt))
            {
                return(false);
            }

            return(true);
        }
コード例 #2
0
 public bool VisitCXXThrowExpr(CXXThrowExpr stmt)
 {
     throw new NotImplementedException();
 }