コード例 #1
0
 public CodecInfoWithAttributes(CodecInfo info) : this()
 {
     this.Info = info;
 }
コード例 #2
0
ファイル: CodecInfo.cs プロジェクト: radiomonter/Tanki_X
 public bool Equals(CodecInfo other) =>
 (Equals(this.type, other.type) && (this.optional == other.optional)) && (this.varied == other.varied);