1.

Briefly Explain The Characteristics Of Value-type Variables That Are Supported In The C# Programming Language.?

Answer»

The variables that are based on value types directly contain values.

The characteristics of value-type variables that are supported in C# programming LANGUAGE are as follows:

  • All value-type variables DERIVE implicitly from the System.ValueType class
  • You cannot derive any new type from a value type
  • Value types have an IMPLICIT default constructor that initializes the default value of that type

The value type consists of two main categories:

  • Structs - Summarizes small groups of RELATED variables.
  • Enumerations - Consists of a set of NAMED constants.

The variables that are based on value types directly contain values.

The characteristics of value-type variables that are supported in C# programming language are as follows:

The value type consists of two main categories:



Discussion

No Comment Found