mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
23 lines
429 B
C#
23 lines
429 B
C#
partial class TwoPartClass
|
|
{
|
|
partial void PartialMethodWithBody1();
|
|
partial void PartialMethodWithoutBody1();
|
|
public void Method2() { }
|
|
}
|
|
|
|
partial class TwoPartClass
|
|
{
|
|
partial void PartialMethodWithBody1() { }
|
|
public void Method3() { }
|
|
}
|
|
|
|
partial class OnePartPartialClass
|
|
{
|
|
partial void PartialMethodWithoutBody2();
|
|
public void Method4() { }
|
|
}
|
|
|
|
class NonPartialClass
|
|
{
|
|
public void Method5() { }
|
|
} |