Search code examples
.netarraystypes

.NET Arrays datatypes


is it possible to store multiple datatypes in an array, if not, what could the reason be?


Solution

  • Yes.

    You can make an object[] and put anything you want inside of it.

    However, you probably shouldn't.
    What are you trying to do?