InterviewSolution
Saved Bookmarks
| 1. |
Does Mixed Arrays still exist in C#? |
|
Answer» The concept of Mixed arrays is OBSOLETE since .NET 4.0. Since it does not exist now, you can use LIST collection in C#. An example is: Tuple<INT, string> t = new Tuple<int, string>(200, "This is fine!"); |
|