c:\Users\Dreamcatcher\AppData\Local\Temp\Temporary ASP.NET Files\shareyourlossweb\8857af9f\f8322885\App_Code.10.cs(13,11): warning CS3008:
Identifier '__ASP' is not CLS-compliant
What does this error message mean. Any ideas how to fix it??????????????
Zhao Ji Ma
Sincerely,
Microsoft Online Community Support
“Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. ”
newbie06
Member
625 Points
458 Posts
warning CS3008: Identifier '__ASP' is not CLS-compliant
Jan 06, 2008 12:36 AM|LINK
c:\Users\Dreamcatcher\AppData\Local\Temp\Temporary ASP.NET Files\shareyourlossweb\8857af9f\f8322885\App_Code.10.cs(13,11): warning CS3008: Identifier '__ASP' is not CLS-compliant
What does this error message mean. Any ideas how to fix it??????????????
Thanks newbie.
OesisAcc2
Member
274 Points
70 Posts
Re: warning CS3008: Identifier '__ASP' is not CLS-compliant
Jan 06, 2008 05:37 PM|LINK
Hi,
A public (or protected) identifier breaks compliance with the Common Language Specification (CLS) if it begins with an underscore character (_).
Check your Code for public/protected variable that start with "_" and rename them.
Cheers,
Matthias :)
Zhao Ji Ma -...
All-Star
23104 Points
2380 Posts
Re: warning CS3008: Identifier '__ASP' is not CLS-compliant
Jan 09, 2008 09:43 AM|LINK
Hi,
It is a warnning, you can ignore it. You can check this for more details:
http://msdn2.microsoft.com/en-us/library/x8ak87y5(VS.80).aspx
Sincerely,
Microsoft Online Community Support
“Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. ”