예제 #1
0
파일: Ticket.cs 프로젝트: kei10in/KipSharp
 public override int GetHashCode()
 {
     return(_features.GetHashCode() ^
            _parameters.GetHashCode() ^
            _properties.GetHashCode() ^
            _declaredNamespaces.GetHashCode());
 }
예제 #2
0
 public override int GetHashCode()
 {
     return(Name?.GetHashCode() ?? 0 ^
            Constrained?.GetHashCode() ?? 0 ^
            _properties.GetHashCode() ^
            _scoredProperties.GetHashCode());
 }
예제 #3
0
파일: Feature.cs 프로젝트: kei10in/KipSharp
 public override int GetHashCode()
 {
     return(Name.GetHashCode() ^
            _options.GetHashCode() ^
            _properties.GetHashCode() ^
            _features.GetHashCode());
 }
예제 #4
0
 public override int GetHashCode()
 {
     return(Name.GetHashCode() ^
            Value?.GetHashCode() ?? 0 ^
            ParameterRef?.GetHashCode() ?? 0 ^
            _scoredProperties.GetHashCode() ^
            _properties.GetHashCode());
 }
예제 #5
0
 public override int GetHashCode()
 {
     return(Name.GetHashCode() ^
            Value?.GetHashCode() ?? 0 ^
            _properties.GetHashCode());
 }