コード例 #1
0
ファイル: Symbol.cs プロジェクト: hesam/SketchSharp
 public  static CDebugMethodSymbol Create(IDebugMethodField field, IDebugContext context) {
   return new CDebugMethodSymbol(field, context);
 }
コード例 #2
0
ファイル: Symbol.cs プロジェクト: hesam/SketchSharp
 public  CDebugMethodSymbol(IDebugMethodField field, IDebugContext context) : base (field as IDebugField, context) {
   this.m_MethodField = field;
 }