Using and enviroment. newline

Source: Internet
Author: User

Using statement:

It is not something similar to # include or import that we see at the beginning, but to release unmanaged resources. All classes that implement idisposable can be used like this, such as file operations:

Using (streamreader sr = new streamreader ("sample.txt "))
{
Strcontent = Sr. readtoend ();
}

This is equivalent:

Streamreader sr = new streamreader ("sample.txt ");
Try {
Strcontent = Sr. readtoend ();
} Catch (){
//...
} Finally {
Sr. Dispose (); // It equvalent to Sr. Close ();
}

The other is the end of line. We usually use/n instead, but this is not very good. We should use

Environment. newline

In Java, yes:
System. getproperty ("line. separator ")

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.