I have three C# methods that largely do identical things. There is much code repetition but at the end, they both perform different functions.
This is obviously very inefficient, so what's the best way to cut down on code duplication? Should I place it all in one method and use a switch & enum for the different functionality at the end? Alternatively, is there some kind of way you can have 3 separate classes and inherit the shared bit from another? I've done a fair bit of reading about this and from what I can gather, this is only used to gain properties from a whole different class.
Please forgive me if my terminology is a bit off - I'm fairly new to this all. Thanks in advance for any help.