Ciao a tutti,
io ho una stringa che contiene anno+ mese(YYYYMM)
voglio prendere MM per usarlo come indice in :
String[] months = new String [] { "January", "February", "March",
"April", "May", "June",
"July", "August", "September",
"October", "November", "December" };
if (mm > 12)
return "Unknown";
return months[mm - 1];
}
come faccio????
Grazie