What is the root class in .Net?
Pavan Sai
System.Object
Static class does not allow user to create instances of the class as well as it restrict the user to inherit any data members/functions to derived class. So A static class can make your implementation simpler ,safe and faster because you do not have to create an object in order to invoke its methods.
System.
Object is the super class of all classes.
Object.
The root class in .Net is "System.Object " because all classes in the .Net Framework are derived form Object.
System.Object is the base calls of all calles in .Net. System.Object supports all classes in .NET Framework hierarchy and provide base level services to the derived classes
system.Object is a root class in .net
System.object
System
Root class award goes to System.Object. All classes internally inherits Object class.
System.Object is the root class of .net. For detail have a look of the links http://net-informations.com/q/faq/root-class.html http://www.c-sharpcorner.com/forums/root-class-of-net http://www.coolinterview.com/interview/4917/
System.Object class is Root class in .Net
System.Object is the base calls of all calles in .Net
OBJECT
Class: System.Object Namespace: System Assembly: mscorlib (in mscorlib.dll)
System.Object class
Object
system.object is know as the root class in .NET.In .Net all the objects of value type and reference type are related to object class because of this any class will be related to the object class.so that's why it is know as root class
System.Object class is parent class of all other class
Object Class is the ultimate base class of all classes in the .NET Framework
object
Base class is System.Object
System. Object is the base class of all Classes in .Net. System. Object supports all classes in .NET Framework hierarchy and provide base level services to the derived classes