OK, in C# we have something like:
public static string Destroy(this string s) { return \"\"; }
So basically, when you have a string you ca
You can do what you have asked like the following:
def extension_method(self): #do stuff class.extension_method = extension_method