Compiler Warning (level 1) CS3023
CLSCompliant attribute has no meaning when applied to return types. Try putting it on the method instead.
Function return types are not checked for CLS Compliance, since the CLS Compliance rules apply to methods and type declarations.
The following example generates warning CS3023:
// C3023.cs
[assembly:System.CLSCompliant(true)]
public class Test
{
[return:System.CLSCompliant(true)] // CS3023
// Try this instead:
// [method:System.CLSCompliant(true)]
public static int Main()
{
return 0;
}
}
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
.NET feedback
.NET is an open source project. Select a link to provide feedback: