An easy-to-mistake problem with attributes in C #

Source: Internet
Author: User

Guess what the output of the following program is?

usingSystem;
usingSystem.Windows.Forms;

namespaceSkyiv.Ben.Test
{
Sealed classMaintest
{
Static voidMain ()
{
Label Lblout= NewLabel ();
Lblout.text= NULL;
Console.WriteLine ("{0} {1}", Lblout.text== NULL, Lblout.text== "");
}
}
}
The output of the program is: false true instead of: true false. That is, you assign a null value to Lblout.text, and the value of Lblout.text is "" (that is, string. Empty), instead of NULL. Lblout.text is a property, in fact, by C # syntax, assigning a value to a property is the set method that calls it, and getting the value of the property is the Get method that calls it, which does not have to be consistent, that is, you assign a value to the property and then read the value of the property. The value you've taken is probably not the value you just assigned it to. If you are not careful in programming, you may have a bug. I've had this error when I wrote the program:
Lblout.text = Getaccount ();
if (Lblout.text = = null) Lblout.text = "No such account";
As a result, the IF statement never takes a true value.

Copyright NOTICE: This article for Bo Master http://www.zuiniusn.com original article, without Bo Master permission not reproduced.

An easy-to-mistake problem with attributes in C #

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.