You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since the assembly is not marked CLS compliant, it is not possible to consume icu-dotnet and expose any of its types publicly in a CLS compliant assembly. Not marking with [assembly: CLSCompliant(true)] means all types in the library are not CLS compliant, including interfaces and enumerations.
It would be helpful for consumers of this class who are CLS compliant if icu-dotnet were also CLS compliant (even if some of its types need to be marked CLSCompliant(false) to meet this requirement).
The text was updated successfully, but these errors were encountered:
Since the assembly is not marked CLS compliant, it is not possible to consume icu-dotnet and expose any of its types publicly in a CLS compliant assembly. Not marking with
[assembly: CLSCompliant(true)]
means all types in the library are not CLS compliant, including interfaces and enumerations.It would be helpful for consumers of this class who are CLS compliant if icu-dotnet were also CLS compliant (even if some of its types need to be marked CLSCompliant(false) to meet this requirement).
The text was updated successfully, but these errors were encountered: