Last active
December 18, 2015 07:28
-
-
Save dastanko/5746426 to your computer and use it in GitHub Desktop.
Шаблон на C#
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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