Advertisement
Guest User

Untitled

a guest
Oct 18th, 2016
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.36 KB | None | 0 0
  1.  
  2. Script code:
  3.  
  4.  
  5. using System;
  6.  
  7. class Test
  8. {
  9. public int I=0;
  10.  
  11. public int J=0;
  12.  
  13.  
  14.  
  15. public char[] MyChar1 {get;private set;}
  16.  
  17.  
  18. public void Completion(int i=0,int j=0)
  19. {
  20. I=i;
  21. J=j;
  22. }
  23. public void Completion(int i,int j,int k)
  24. {
  25. I=i;
  26. J=j;
  27. }
  28.  
  29. public void Completion()
  30. {
  31.  var test=new Test();
  32.  var ss="";
  33.  
  34.  ss.Equals("");
  35. }
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement