-
What is Reflection? Reflection is the feature in .Net, which enables us to get some information about object in run time. That information contains data of the class. Also it can get the names of the methods that are inside the class and constructors of that object. To write a C# .Net program which uses...
-
thanks.Pls inform me if you find any better idea.
-
Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4 Understanding Static Methods and Data Static keyword is widely used to share the same field or method among all the objects of the class. The actual goal of the static keyword is to share a single data over all the objects. There...
-
Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4 Constructor Constructor is a simple method inside a class. Except it has some exceptions: Ø Constructor has the same name as the class. Ø Constructor does not return value even void. Ø Constructor can be built...