var text = Console.ReadLine();
var textArray = text?.ToCharArray();
for (var i = textArray.Length - 3; i < textArray.Length; i++)
{
textArray[i] = char.ToUpper(textArray[i]);
}
Console.WriteLine(textArray);
Console.ReadKey();
var text = Console.ReadLine();
var textArray = text?.ToCharArray();
textArray = textArray.Take(textArray.Length - 3).Concat(textArray.Skip(textArray.Length - 3).Select(char.ToUpper)).ToArray();
Console.WriteLine(textArray);
Console.ReadKey();