What is the minimum size (in bytes) of string data type in c#?
Give its compatible data type in .NET Framework.

Answers were Sorted based on User's Feedback



What is the minimum size (in bytes) of string data type in c#? Give its compatible data type in .NE..

Answer / dileep

A string type takes 4 bytes (A string is a referenc type)
Bcoz either it references a null value or a non-null value
since it is a reference type which holds the address of a
memory location it occupies the size of an integer (which
is 4 bytes in c#).

Is This Answer Correct ?    7 Yes 0 No

What is the minimum size (in bytes) of string data type in c#? Give its compatible data type in .NE..

Answer / harikrishna

2bytes

Is This Answer Correct ?    7 Yes 1 No

What is the minimum size (in bytes) of string data type in c#? Give its compatible data type in .NE..

Answer / paresh nawale

dileep is right.
as string is refrence type it need 4 bytes to hold memeory
address.

Is This Answer Correct ?    3 Yes 1 No

What is the minimum size (in bytes) of string data type in c#? Give its compatible data type in .NE..

Answer / mohan

12 bytes

Is This Answer Correct ?    1 Yes 3 No

What is the minimum size (in bytes) of string data type in c#? Give its compatible data type in .NE..

Answer / ganesh

sorry harikrishna. ur answer is wrong.

by default the size of a string is 0 bytes.we can have a
null string in c#.

Is This Answer Correct ?    2 Yes 5 No

Post New Answer

More C Sharp Interview Questions

What is the default value of object in c#?

0 Answers  


Why do we need singleton pattern in c#?

0 Answers  


If a class derives from another class, will the derived class automatically contain all the public, protected, and internal members of the base class?

0 Answers  


What is the difference between class and namespace?

0 Answers  


what is the difference between the debug class and trace class?

0 Answers   Rolta,






What are constants in c#?

0 Answers  


What are satellite assemblies?

0 Answers  


Can an interface extend a class c#?

0 Answers  


What are the differences between system.string and system.text.stringbuilder classes?

0 Answers  


Can you override private virtual methods?

5 Answers  


What tool we have to use to install assembli in gac folder.

0 Answers  


Can abstract class have parameterized constructor?

0 Answers  


Categories