コード例 #1
0
ファイル: ParameterKeyInfo.cs プロジェクト: vol16bit/xenko
 public bool Equals(ParameterKeyInfo other)
 {
     return(Key.Equals(other.Key) && Offset == other.Offset && Count == other.Count && BindingSlot == other.BindingSlot);
 }
コード例 #2
0
 public bool Equals(ParameterComposedKey other)
 {
     return(Key.Equals(other.Key) && string.Equals(Name, other.Name) && Indexer == other.Indexer);
 }