Can you store multiple data types in System.Array?
Answer Posted / harry
We Can Store Multiple datatypes in array by taking array as
object
Dim myarr(8) As Object
myarr(3) = "fff"
myarr(4) = 45645
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What do you mean by casting a data type?
What is serializable in c#?
Define delegate?
Can you see a loop recorder?
Why do we need to serialize data?
What is a nullreferenceexception?
What is dynamic dispatch?
Explain the term inheritance in C#.
What is overriding in c#?
What is the execution entry point for a c# console application?
Explain concurrency with aop?
Can you instantiate a struct without using a new operator in c#?
Are arrays value types or reference types?
What is multicast delegate explain with example?
What are circular references? How garbage collection deals with circular references.