fork download
  1. using System;
  2.  
  3. static class Test
  4. {
  5. private static int Add(this int x, int y) => x + y;
  6.  
  7. static void Main(string[] args)
  8. {
  9. Console.WriteLine(3.Add(2));
  10. }
  11. }
Success #stdin #stdout 0s 131648KB
stdin
Standard input is empty
stdout
5