Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System.Diagnostics;
- namespace Debugging
- {
- [DebuggerDisplay("{Name}")]
- public class Student
- {
- public Student(string name, int age)
- {
- this.Name = name;
- this.Age = age;
- }
- public string Name { get; private set; }
- public int Age { get; private set; }
- }
- }
Add Comment
Please, Sign In to add comment