Multiple choice technology operating systems

Which base class are all classes derived from in C#?

  1. Microsoft

  2. MIcrosoft.Windows

  3. System.Object

  4. System.Windows

Reveal answer Fill a bubble to check yourself
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.