CLS specs?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Smokey Grindle

    #1

    CLS specs?

    Is there a good explination of what would cause a CLS warrning in .NET 2.0
    out there anywhere? like list of reasons and examples of what cause an
    object or type to not be CLS complaint? thanks!


  • Robinson

    #2
    Re: CLS specs?


    "Smokey Grindle" <nospam@dontspa mme.comwrote in message
    news:Ou0KB0mDHH A.3536@TK2MSFTN GP02.phx.gbl...
    Is there a good explination of what would cause a CLS warrning in .NET 2.0
    out there anywhere? like list of reasons and examples of what cause an
    object or type to not be CLS complaint? thanks!
    Google: cls+compliant

    An example (c# although principles are the same)


    You can get rid of the warning with: <CLSCompliant(f alse)_, or by making
    the object CLS compliant ;).


    Robin.


    Comment

    Working...