Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Only methods, classes, structs, or interfaces may be partial.
The partial modifier can only be used with classes, structs, interfaces, and methods.
To correct this error
- Remove the
partialmodifier from the variable or language construct.
Example
The following code generates CS0753:
// cs0753.cs
using System;
public partial class C
{
partial int num; // CS0753
public static int Main()
{
return 1;
}
}
See also
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.