コード例 #1
0
        public override bool Equals(object o)
        {
            ProjectingParameterInfo other = o as ProjectingParameterInfo;

            return(other != null &&
                   Projector == other.Projector &&
                   UnderlyingParameter.Equals(other.UnderlyingParameter));
        }
コード例 #2
0
 public override bool Equals([NotNullWhen(true)] object?o)
 {
     return(o is ProjectingParameterInfo other &&
            Projector == other.Projector &&
            UnderlyingParameter.Equals(other.UnderlyingParameter));
 }
コード例 #3
0
 public override bool Equals(object o)
 {
     return(o is ProjectingParameterInfo other &&
            Projector == other.Projector &&
            UnderlyingParameter.Equals(other.UnderlyingParameter));
 }