public static void Main() {
Console.WriteLine(FormataRG("12345678x"));
Console.WriteLine(FormataRG("123456789"));
public static string FormataRG(string texto) {
return texto.Substring(0, 2) + "." + texto.Substring(2, 3) + "." + texto.Substring(5, 3) + "-" + texto.Substring(8, 1).ToUpper();