Advertisement
Guest User

Untitled

a guest
Jun 30th, 2014
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.24 KB | None | 0 0
  1. public class ButtonGame
  2. {
  3.     public int Variable {get; set;}
  4. }
  5.  
  6. public class Form
  7. {
  8.     ButtonGame game;
  9.     public Form()
  10.     {
  11.         game = new ButtonGame();
  12.     }
  13.  
  14.     public void Function()
  15.     {
  16.         int obscureResult = game.Variable + 10 * 2;
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement