SimpleGitVersion.RepositoryInfo.SetError C# (CSharp) 메소드

SetError() 정적인 개인적인 메소드

static private SetError ( StringBuilder errors, IReadOnlyList &lines, string &text ) : void
errors StringBuilder
lines IReadOnlyList
text string
리턴 void
        static void SetError( StringBuilder errors, out IReadOnlyList<string> lines, out string text )
        {
            Debug.Assert( errors.Length > 0 );
            text = errors.ToString();
            lines = text.Split( new char[] { '\r', '\n' }, StringSplitOptions.RemoveEmptyEntries );
        }