2
Reply

Why object.ToString() method always there in asp.net...tell me about real reason behin this??????

Vipin Mittal

Vipin Mittal

7y
2.3k
2
Reply

    ToString() method is a virtual method in Object Class, Every class which we create is inherited from Object class. So it is always there in every class.

    Because Object is the base class of all reference types in the .NET Framework, this behavior is inherited by reference types.