ArmRest.Areas.HelpPage.TextSample.TextSample C# (CSharp) Méthode

TextSample() public méthode

public TextSample ( string text ) : System
text string
Résultat System
        public TextSample(string text)
        {
            if (text == null)
            {
                throw new ArgumentNullException("text");
            }
            Text = text;
        }