System.Runtime.Serialization.Json.JavaScriptReader.JsonError C# (CSharp) 메소드

JsonError() 개인적인 메소드

private JsonError ( string msg ) : Exception
msg string
리턴 Exception
        private Exception JsonError(string msg)
        {
            return new ArgumentException(SR.Format(SR.ArgumentException_MessageAt, msg, _line, _column));
        }
    }