fork download
  1. using static Crypt.CaesarCipher;
  2.  
  3. public class Program {
  4. public static void Main() => Decode("", 0);
  5. }
  6.  
  7. namespace Crypt {
  8. public static class CaesarCipher {
  9. public static string Decode(string text, byte key) => "";
  10. public static string Encode(string text, byte key) => "";
  11. }
  12. }
  13.  
  14. //https://pt.stackoverflow.com/q/499060/101
Success #stdin #stdout 0.02s 13968KB
stdin
Standard input is empty
stdout
Standard output is empty