コード例 #1
0
 public DataType VisitEnum(EnumType e)
 {
     return(e);
 }
コード例 #2
0
ファイル: EnumType.cs プロジェクト: xxtxiaofeng/reko
 public EnumType(EnumType other) : this(other.Name)
 {
     this.Members = new SortedList <string, long>(other.Members);
 }
コード例 #3
0
ファイル: TypeGraphWriter.cs プロジェクト: Godzil/reko
 public Formatter VisitEnum(EnumType e)
 {
     throw new NotImplementedException();
 }