Compiler Error CS0753
Only methods, classes, structs, or interfaces may be partial.
The partial modifier can only be used with classes, structs, interfaces, and methods.
- Remove the
partial
modifier from the variable or language construct.
The following code generates CS0753:
// cs0753.cs
using System;
public partial class C
{
partial int num; // CS0753
public static int Main()
{
return 1;
}
}
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: