Difference between string. Empty, "" and null

Source: Internet
Author: User
Tags mscorlib
String. Empty field

. NET Framework class library

Represents an empty string. This field is read-only. Namespace: System

Assembly: mscorlib (in mscorlib. dll)

Protected string loginid = string. Empty;

Protected string loginid = "";

String. Empty does not allocate storage space

"" Allocate a bucket with an empty Length

Therefore, we generally use string. Empty

For the sake of future cross-platform use string. Empty

In C #, "" And string. Empty Can be used interchangeably. For example:

String S = "";

String S2 = string. empty;

If (S = string. Empty ){

//

}

If statement is true

Several methods for determining as a Null String, in the order of performance from high to low:

S. Length = 0 is better than S = string. Empty is better than S = ""

About string. the problem with empty and null is that both of them indicate null strings, and one of them focuses on string str1 = string. the difference between empty and string str2 = NULL. After this definition, str1 is an empty string, and the empty string is a special string, except that the value of this string is null, in the memory, there is an accurate point. String str2 = NULL. After this definition, only a reference to the string class is defined, and str2 does not point to any place, if it is not instantiated before use, an error will be reported. Textbox1.text is a zero-length string "".

Can it be understood as follows:
String. Empty does not allocate storage space. The value is null;

"" An Empty storage space is allocated. The value is null;
Null does not allocate storage space and has no value.

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.