Please enable JavaScript.
Coggle requires JavaScript to display documents.
C# (OOPs, Data Types, Data Type Conversion) - Coggle Diagram
C#
OOPs
Inheritance: allows 1 class to acquire attributes and methods of another class
- Can't have multiple inheritances
-
Abstract Class
- Can't be instantiated
- should be inherited by other class
- you can have implementation
Interface
- Only fields & method.
- No implementation
- No constructor, No properties
- Can have multiple inheritance
-
-
-
Data Types
-
Reference Types
string, object and dynamic
-
-
-
-
-
-
-