App.Web.Areas.HelpPage.TextSample.TextSample C# (CSharp) 메소드

TextSample() 공개 메소드

public TextSample ( string text ) : System
text string
리턴 System
        public TextSample(string text)
        {
            if (text == null)
            {
                throw new ArgumentNullException("text");
            }
            Text = text;
        }