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

GetPreamble() public method

public GetPreamble ( ) : byte[]
return byte[]
        public override byte[] GetPreamble()
        {
            throw null;
        }

Usage Example

示例#1
0
        public void PosTest1()
        {
            UTF8Encoding UTF8NoPreamble = new UTF8Encoding();
            Byte[] preamble;

            preamble = UTF8NoPreamble.GetPreamble();
        }
All Usage Examples Of System.Text.UTF8Encoding::GetPreamble