15 lines
196 B
C#
15 lines
196 B
C#
|
// CS0759: A partial method `C.Foo()' implementation is missing a partial method declaration
|
||
|
// Line: 7
|
||
|
|
||
|
|
||
|
public partial class C
|
||
|
{
|
||
|
partial void Foo ()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public static void Main ()
|
||
|
{
|
||
|
}
|
||
|
}
|