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.
- 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;
}
}
.NET feedback
.NET is an open source project. Select a link to provide feedback: