Advertisement
Guest User

Untitled

a guest
May 28th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.22 KB | None | 0 0
  1. class Program{
  2.     static void Main(){
  3.         string woord = "muts";
  4.         string spaans = woord.Verspaans();
  5.     }
  6. }
  7.  
  8. public static class StringHelper{
  9.     public static string Verspaans(this string input){
  10.         return input + "os";
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement