Object Oriented QA (VB.NET)
VB.NET Object Oriented Language Quations Answers. Since a long time, it was my desire to prepare a Question Answer list for Object Oriented Features of Vb.NET. Dream Come True. Here it is.
Books Refered: VB.NET Unleased 1.1 and Object Oriented Programming using Vb.NET (OReilly)
DOWNLOAD QA “The ability to define a class and create instances of classes is one of the most important capabilities of any Object Oriented Language” Q: How will you define a CLASS ? A: All classes in Visual Basic. NET are defined in a .VB file (as oppose to .CLS file in vb6), Also .VB file may contain one or more classes. The basic syntax of a class is as follows: Class ClassName End Class Public|Protected|Friend|Pro... Friend|Private Class Vehicle End Class Q: List All Class Access...