Skip to content

Instantly share code, notes, and snippets.

@dastanko
Last active December 18, 2015 07:28
Show Gist options
  • Save dastanko/5746426 to your computer and use it in GitHub Desktop.
Save dastanko/5746426 to your computer and use it in GitHub Desktop.
Шаблон на C#
public class CesarCipher
{
public char[] Alphabet { private get; set; }
public int Shift { private get; set; }
public string Encode(string plainText)
{
// Реализация
return encoded_text;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment