SMProxy

Untitled

May 14th, 2012
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.14 KB | None | 0 0
  1. public class API
  2. {
  3. // domain.com/api/getusername?userId=1234
  4. public void getUsername(int userId)
  5. {
  6.     return GetUser(userId).Username;
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment