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

GetDecoder() public method

public GetDecoder ( ) : System.Text.Decoder
return System.Text.Decoder
        public override System.Text.Decoder GetDecoder()
        {
            throw null;
        }

Usage Example

示例#1
0
 public void PosTest1()
 {
     UTF7Encoding utf7 = new UTF7Encoding();
     Decoder decoder = utf7.GetDecoder();
 }