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

GetHashCode() public method

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

Usage Example

示例#1
0
 public void PosTest2()
 {
     UTF8Encoding utf8a = new UTF8Encoding(true);
     UTF8Encoding utf8b = new UTF8Encoding(true, true);
     Assert.NotEqual(utf8a.GetHashCode(), utf8b.GetHashCode());
 }
All Usage Examples Of System.Text.UTF8Encoding::GetHashCode