Every type supported by CTS is derived from

A) System .Object
B) System .Type
C) System .Data
Explanation: System .Object is the base for every type in VB.NET

Showing Answers 1 - 8 of 8 Answers

sabir

  • Jan 13th, 2006
 

it system.object since all the root name space for the datatype is object

  Was this answer useful?  Yes

PavanKumar

  • Nov 3rd, 2006
 

Every type derived by CTS is derived from System.Object. Even the fact that the integer variables that we create also belong to the Object Type. If at all we declare a variable i as int i;Now in the above example an object for the integer type is defined but is automatically being converted to value type by a mechanism called boxing which we dont even come to know as this all happens in the background. Thanks & RegardsPavan Kumar.S

  Was this answer useful?  Yes

dunnozilch

  • Dec 2nd, 2006
 

Every type derived by CTS is derived from System.Object. Even the fact that the integer variables that we create also belong to the Object Type. If at all we declare a variable i as int i;Now in the above example an object for the integer type is defined but is automatically being converted to value type by a mechanism called boxing which we dont even come to know as this all happens in the background. Thanks & RegardsPavan Kumar.S---dude! you are mixing up stuff here...theres no boxing while declaring int i; boxing comes when you have integers being used as objects...integers are value types and are used as value types.

  Was this answer useful?  Yes

raju nigam

  • May 28th, 2014
 

a

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions