Advertisement
Guest User

Untitled

a guest
Mar 24th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. {
  2. String f = "flying";
  3. String str = A(f);
  4.  
  5. Console.WriteLine(str);
  6.  
  7. Console.ReadKey();
  8. }
  9.  
  10. public static string A(string s) {
  11. string first = s.Substring(0, 1);
  12. return first;
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement