I have the following class with some methods, and I would like to use it as the base class of another class.
public class BaseClass { public string DoWork(string str) {
I do not want this class to be created, but the derived class should still use the original implementation of the methods of its base class.
Is it possible? What should be my modifier?
c #
yonan2236
source share