CANNAN

Ram 15

Apr 13th, 2017
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 KB | None | 0 0
  1. using System;
  2. class VarAccess
  3. {
  4. class AccessCls
  5. {
  6. public int num1 = 123;
  7. // int num2 = 54;
  8. }
  9. static void Main()
  10. {
  11. AccessCls cls = new AccessCls();
  12. int num1 = 98; num1 = cls.num1;
  13. //int i = cls. Num2;
  14. Console.WriteLine(num1.ToString());
  15. Download fuul project frome here:
  16. http://adf.ly/1mColZ
Add Comment
Please, Sign In to add comment