2
Reply

What are data types in C#?

Deepak  Kamboj

Deepak Kamboj

11y
1.4k
0
Reply

    TWO TYPE DATA type in c# ; 1- VALUE TYPE 2-REFERENCE TYPE

    C# supports two kinds of variable types: Value types. These are the built-in primitive data types, such as char, int, and float, as well as user-defined types declared with struct. Reference types. Classes and other complex data types that are constructed from the primitive types.