static class Program { static void Increment (this ref int @this) // エラー CS1101: パラメーター修飾子 'ref' は 'this' と共に使用することはできません。 { ++@this; } static void Main () { } }