C # type bool

Source: Internet
Author: User

Total type reference address: http://msdn.microsoft.com/zh-cn/library/ya5y69ds (VS.80). aspx

Code
Using System;
Using System. Collections. Generic;
Using System. Linq;
Using System. Text;

Namespace CSType
{
Public class myBool
{
Public myBool ()
{
Bool x = true;

Console. WriteLine (x. GetType ());
// Output: System. Boolean

// Use the Convert class for type conversion.
Int x1 = Convert. ToInt16 (x );
Console. WriteLine (x1 );
// Output 1

X = false;
X1 = Convert. ToInt16 (x );
Console. WriteLine (x1 );
// Output 0

// X1 = (int) x; incorrect conversion method.

Console. WriteLine (x1.GetType ());
// Output System. Int32, which is strange.

// Doesn' t work
// If (x1)
//{
// Console. WriteLine ("True ");
//}

// Right way:
If (x1 <1)
{
Console. WriteLine ("True ");
}
// Expression: x1 <1, which is automatically converted to the bool type.

Console. ReadLine ();
}
}
}

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.