Advertisement
Guest User

Untitled

a guest
May 18th, 2017
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.25 KB | None | 0 0
  1. using System;
  2.  
  3. class Empty
  4.     {
  5.         public int number (int a, int b)
  6.         {
  7.            int numberOne = a;
  8.            int numberTwo = b;
  9.            
  10.            int numberOneMinus = a++;
  11.            int numberTwoPlus = b++;
  12.         }
  13.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement