1 | Is multiple inheritance supported by VB .NET ? |
2 | Web page in .NET Framework hierarchy belongs to which namespace ? |
3 | What is true about ADO.NET dataset ? |
4 | What is the difference between prepared statement with unprepared statement? |
5 | Can two classes have same name? |
6 | What data types do the RangeValidator control support? |
7 | What is an extender class? |
8 | What is an abstract class ? |
9 | What keyword is used to create an abstract class ? |
10 | Question: class SkillGuru
{
public GuruID { get; set; }
public GuruName { get; set; }
}
If an object that made from SkillGuru class is bounded to a TextBox, it won't give useful information. One possible way to solve this is just overriding ToString() method that can be used to give more meaningful information. |