Tagged Questions
1
vote
1answer
128 views
How to extend methods to a class not to its instances
Extending methods to any instance is really easy:
public static string LeaveJustNumbers(this string text)
{
return Regex.Replace(text, @"[\D]", "");
}
...
string JustNumbers = ...