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
Do loops in c#?
Explain copy constructor?
What is wrong with the sample program below?
What does ienumerable mean?
What is the c# equivalent of c++ catch (...), Which was a catch-all statement for any possible exception?
What is a scope in c#?
What does the parsefloat function do?
Explain the difference between “constant” and “read-only” variables used in c#?
What is the use of console application in c#?
Can property be private in c#?
How to find out that the code is written as managed or un-managed code?
What are callback methods in c#?
What does the dispose method do with the connection object?
What is literal in c#?
Are enums static c#?