string "hello world".toLower().toUpper().replace("o", "x");
How do I make my own class be able to have extension methods like string in the example above? Maybe not that usefull, but I just cant figure out how to do it
string "hello world".toLower().toUpper().replace("o", "x");
How do I make my own class be able to have extension methods like string in the example above? Maybe not that usefull, but I just cant figure out how to do it