I\'d like to add a method AddDefaultNamespace() to the String class in Java so that I can type \"myString\".AddDefaultNamespace() instead of
AddDefaultNamespace()
\"myString\".AddDefaultNamespace()
String is a final class which means it cannot be extended to work on your own implementation.
String