コード例 #1
0
 protected override void Initialize()
 {
     using (var stream = this.Export(BufferManager.Instance))
     {
         _hashCode = ItemUtils.GetHashCode(stream);
     }
 }
コード例 #2
0
ファイル: Node.cs プロジェクト: gyakkun/amoeba-for-study
 public override int GetHashCode()
 {
     return((this.Id != null) ? ItemUtils.GetHashCode(this.Id) : 0);
 }
コード例 #3
0
ファイル: Hash.cs プロジェクト: supertanglang/Amoeba
 protected override void Initialize()
 {
     _hashCode = (this.Value != null) ? ItemUtils.GetHashCode(this.Value) : 0;
 }
コード例 #4
0
 public override int GetHashCode()
 {
     return(((int)this.Algorithm) ^ ItemUtils.GetHashCode(this.Value));
 }