git/t/t4018/csharp-method-modifiers

14 lines
204 B
Plaintext

using System.Threading.Tasks;
class Example
{
static internal async Task Method(int RIGHT)
{
// Filler
// Filler
// ChangeMe
await Task.Delay(1);
}
}