Can you store multiple data types in System.Array?
Answer Posted / suyash
ideally we don't,, but we can....
we can do this by declaring object in array which can be
used for different data types!!!
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How do I do implement a trace?
How can you use abstract class and interface?
What is a partial method?
What is an extension method in c#?
Is c# lazy thread safe?
How do I create a delegate/multicastdelegate?
What is an assembly in .net?
Why do we use polymorphism in c#?
What is dependency in software?
How can i Spawn a Thread
What does return do in for loop?
In a C# class we have a SortedList member m_addinProjects
we want to provide an iterator to allow the consumer of
this class access to the items in the collection. Please
provide an iterator method for the AnalyzeAddinsDLL class
below and an example of how it would be used.
namespace AnalyzeAddinsDLL
{
public class AllAddInProjects
{
private SortedList
What is the use of tuple in c#?
If the interface in c# only contains the declaration of the methods and we need to define those methods in the class, then why we use the interface?
What are partial types in c#?