A method with default access modifier, partial, return value
e.g. private partial int Bar(); // no error as it returns value
A partial method with non-default access modifier, void
e.g. public partial void Bar(); // no error as it returns value
A partial method with default access modifier, void
e.g. private partial void Bar(); // trigger WTG1001 and remove 'private' when code-fix run
A partial method with default access modifier, void, out value
e.g. private partial void Bar(out int value); // no error as it 'out' a value
A partial method with default access modifier, return value, out value
e.g. private partial int Bar(out int value); // no error as it returns and 'out' a value
Fix #224 Tracked by WI00764889
A method with default access modifier, partial, return value e.g. private partial int Bar(); // no error as it returns value
A partial method with non-default access modifier, void e.g. public partial void Bar(); // no error as it returns value
A partial method with default access modifier, void e.g. private partial void Bar(); // trigger WTG1001 and remove 'private' when code-fix run
A partial method with default access modifier, void, out value e.g. private partial void Bar(out int value); // no error as it 'out' a value
A partial method with default access modifier, return value, out value e.g. private partial int Bar(out int value); // no error as it returns and 'out' a value