At the risk of asking a question that has already been asked, but
Is there an analog character in Java for the Type type available in C #?
What I want to do is fill the array with elements that reflect several primitive types such as int, byte, etc.
In C #, this will be the following code:
Type[] types = new Type[] { typeof(int), typeof(byte), typeof(short) };
source share