UnityEditor.Json.Parser.EatWhitespace C# (CSharp) 메소드

EatWhitespace() 개인적인 메소드

private EatWhitespace ( ) : void
리턴 void
            private void EatWhitespace()
            {
                while (char.IsWhiteSpace(this.PeekChar))
                {
                    this.json.Read();
                    if (this.json.Peek() == -1)
                    {
                        break;
                    }
                }
            }