Skip to content

Instantly share code, notes, and snippets.

View klotzambein's full-sized avatar

Robin Kock klotzambein

  • Hamburg, Germany / Groningen, Netherlands
View GitHub Profile

Repentance

Zitat

using System;
using System.Collections.Generic;
using System.Linq;
class MainClass {
public static Letter GetAlphabet(Letter code, Letter letter) {
return (Letter)(((int)code + (int)letter) % 26);
}
public static void Main (string[] args) {
var code = "INFO"