asp.net (C #) is inaccessible because it is limited by the protection level _ practical Tips

Source: Internet
Author: User
Today, when you write a complex number of errors, the original code is streamlined as follows:

public class Complex
{
Constructors
Complex (double R, double i)
{
Complex_real = R;
Complex_imagin = i;
}
}

It's depressing here, Java write this is no problem, and C # but there is a big demand for this, in some cases, must be declared public, but such errors are generally caused by modifier errors, such as the original should be used public you have used private or nothing to write:

Private is privately variable
Public is a shared variable
The modified code is as follows:

public class Complex
{
Constructors
Public complex (double R, double i)
{
Complex_real = R;
Complex_imagin = i;
}
}

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.