SchoolSystem.Student.AddComment C# (CSharp) Method

AddComment() public method

public AddComment ( string text ) : void
text string
return void
        public void AddComment(string text)
        {
            Console.WriteLine("Student comment: " + text);
        }