diff --git "a/Retos/Reto #24 - CIFRADO C\303\211SAR [F\303\241cil]/borazuwarah.cs" "b/Retos/Reto #24 - CIFRADO C\303\211SAR [F\303\241cil]/c#/borazuwarah.cs" similarity index 99% rename from "Retos/Reto #24 - CIFRADO C\303\211SAR [F\303\241cil]/borazuwarah.cs" rename to "Retos/Reto #24 - CIFRADO C\303\211SAR [F\303\241cil]/c#/borazuwarah.cs" index 4a071af5e9..ca9a2ed74a 100644 --- "a/Retos/Reto #24 - CIFRADO C\303\211SAR [F\303\241cil]/borazuwarah.cs" +++ "b/Retos/Reto #24 - CIFRADO C\303\211SAR [F\303\241cil]/c#/borazuwarah.cs" @@ -29,7 +29,6 @@ static string CifrarCesar(string texto, int desplazamiento) textoCifrado += c; } } - return textoCifrado; }