예제 #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);