C#... When do I need to rewrite the ToString () method?

Source: Internet
Author: User


The generic type, which is inherited from the System.Object class, by default, the ToString method of the object class returns a string representation of the type of the current class. But there are exceptions!!

datetime, which overrides the ToString method, the ToString method of an instance of a DateTime type returns a string representation of a date, rather than a string representation of a DateTime type.

Another use case is that when we have a student class, we use Console.WriteLine (student), which will output "namespaces." Student ". This is what we don't want, we want to show the student's name when we export, then we need to rewrite the ToString method.

Public override String ToString ()
{
reutrn "Zhang San";
}

In this way, the result of the output will be the form of the student name you want.

C#... When do I need to rewrite the ToString () method?

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.