Anyone knows why it tells me can't edit chaine it's in read only ?!
public static string FormaterChainePascalOuMixte(String chaine)
{
for (int i = 0; i < chaine.Length; i++)
{
char xxx = char.ToUpper(chaine[i]);
if (i != 0 && chaine[i] == xxx)
{
chaine[0] = char.ToLower(xxx);
}
}
}