UnityEngine.WWWTranscoder.QPDecode C# (CSharp) 메소드

QPDecode() 공개 정적인 메소드

public static QPDecode ( byte toEncode ) : byte[]
toEncode byte
리턴 byte[]
        public static byte[] QPDecode(byte[] toEncode)
        {
            return Decode(toEncode, qpEscapeChar, qpSpace);
        }

Same methods

WWWTranscoder::QPDecode ( string toEncode ) : string
WWWTranscoder::QPDecode ( string toEncode, [ e ) : string

Usage Example

예제 #1
0
 public static string QPDecode(string toEncode)
 {
     return(WWWTranscoder.QPDecode(toEncode, Encoding.UTF8));
 }
All Usage Examples Of UnityEngine.WWWTranscoder::QPDecode