Which base class are all classes derived from in C#?
-
Microsoft
-
MIcrosoft.Windows
-
System.Object
-
System.Windows
C
Correct answer
Explanation
Every class in C# implicitly inherits from System.Object (or the object keyword alias), making it the universal base class. This provides common methods like ToString(), Equals(), and GetHashCode() to all objects in the .NET framework.