using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace CryptanalysisCore.Structures { struct SplitWord { public Dictionary startLetters; public Dictionary lastLetters; public int lengthStart; public int lengthLast; public int totalLength { get { return lengthLast + lengthStart; } } } }