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
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 |
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 |
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 |
Differentiate between response.expires and response.expiresabsolute?
What is Event - Delegate?
How long does a loop recorder procedure take?
Can we have private constructor in our class file. When we are trying to create instance for the class will it create or throw error regarding that?
Why do we need indexers in c#?
What is reference types in c#?
Why are strings immutable c#?
What are custom exceptions?
What is difference between value and reference types ?
What can I create with c#?
Why do we use Design Pattern in C#?
Is hashset serializable c#?