mjc65

paste1

Jul 14th, 2021
829
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.15 KB | None | 0 0
  1. namespace Calculator
  2. {
  3.     public class Calculator
  4.     {
  5.         public int Add(int x, int y)
  6.         {
  7.             return x + y;
  8.         }
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment