System.Data.DataError.SetText C# (CSharp) 메소드

SetText() 개인적인 메소드

Sets the error message for the .
private SetText ( string errorText ) : void
errorText string
리턴 void
        private void SetText(string errorText)
        {
            if (null == errorText)
            {
                errorText = string.Empty;
            }
            _rowError = errorText;
        }