Advertisement
recipe

Untitled

Feb 15th, 2015
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.21 KB | None | 0 0
  1. public void GetMethod(string stringname)
  2. {
  3.     return stringname; //How does this work if I where to call like below
  4. }
  5.  
  6. public void DoShit()
  7. {
  8.     //doing shit
  9.     GetMethod("string");
  10.     //using the string down here?
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement