System.Text.UTF7Encoding.GetHashCode C# (CSharp) Method

GetHashCode() public method

public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            throw null;
        }

Usage Example

示例#1
0
 public void PosTest1()
 {
     UTF7Encoding utf7a = new UTF7Encoding();
     UTF7Encoding utf7b = utf7a;
     Assert.Equal(utf7a.GetHashCode(), utf7b.GetHashCode());
 }