C # warning when referencing the public variables of other namespaces: Because "***" refers to the field of the mail class, accessing the above members may cause runtime exceptions.

Source: Internet
Author: User
Compiler warning (level 1) cs1690

 

Error Message

Because "member" refers to the sending class field, accessing the above members may cause runtime exceptions.

 

When you tryMarshalbyrefobjectThis warning is reported when a derived class member calls a method, attribute, or indexer and the member is of the value type. To resolve this warning, copy the member to a local variable and call the method for this variable.

The following example generates cs1690:

 

// Cs1690.csusing system; Class warningcs1690: financialbyrefobject {int I = 5; public static void main () {warningcs1690 E = new warningcs1690 (); E. i. tostring (); // cs1690 // OK int I = E. i; I. tostring (); E. I = 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.