The Law of Expanding Wrappers

Or, Why It’s Sometimes Better To Inherit Than to Write a Wrapper Class All Part of the Process I recently wrote code in C# that needed to call an external program for an answer. No problem! Let’s just instantiate the Process class and be on our merry way! public static string GetOutputFromProcess(string name, string args) [...]