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

GetString() 개인적인 메소드

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

                    if (_numChars > 0)
                        return new string(_charBuffer, 0, _numChars);
                    else
                        return string.Empty;
                }
            }