As stated above, is it redundant to inherit from Object in c#? Do both sets of code below result in equivalent objects being defined?
class TestClassUno : Ob
Yes, everything ultimately inherits from an object if defined as class. Leave the explicit inheritance out of your code.
class