What are object data types in C#?
Answers
Answered by
0
The object type is an alias for Object in NET. In the unified type system of C# all types predefined and user-defined, reference types and value types inherit directly or indirectly from Object. You can assign values of any type to variables of type object .
Similar questions