I want to add my own member to the StringBuilder class, but when I go to create it IntelliSense doesn’t bring it up.
public class myStringBuilder() Inherits System.Text.[StringBuilder should be here] .... end class
Is it even possible? thanks
StringBuilderisNotInheritable(akasealedin C#) so you cannot derive from it. You could try wrappingStringBuilderin your own class or consider using extension methods instead.