コード例 #1
0
ファイル: KValue.cs プロジェクト: Koople/sdk-cs
 public override bool NotEquals(IKValue other) => !Equals(other);
コード例 #2
0
ファイル: KValue.cs プロジェクト: Koople/sdk-cs
 public abstract bool NotEquals(IKValue other);
コード例 #3
0
ファイル: KValue.cs プロジェクト: Koople/sdk-cs
 public override bool IsEquals(IKValue other) => GetType() == other.GetType() && Value.Equals(other.GetValue());
コード例 #4
0
ファイル: KValue.cs プロジェクト: Koople/sdk-cs
 public abstract bool IsEquals(IKValue other);