System.Text.UTF7Encoding.Equals C# (CSharp) 메소드

Equals() 공개 메소드

public Equals ( object value ) : bool
value object
리턴 bool
        public override bool Equals(object value)
        {
            throw null;
        }

Usage Example

예제 #1
0
 public void PosTest2()
 {
     UTF7Encoding utf71 = new UTF7Encoding();
     UTF7Encoding utf72 = new UTF7Encoding();
     utf71 = utf72;
     Assert.True(utf71.Equals(utf72));
 }
All Usage Examples Of System.Text.UTF7Encoding::Equals