System.Net.WebUtility.UrlDecoder.GetString C# (CSharp) 메소드

GetString() 개인적인 메소드

private GetString ( ) : String
리턴 String
            internal String GetString()
            {
                if (_numBytes > 0)
                    FlushBytes();

                Debug.Assert(_numChars > 0);
                return new string(_charBuffer, 0, _numChars);
            }
        }