internal Font(int rows, int rowHeight, int[] offsets, int[] widths) { Rows = rows; RowHeight = rowHeight; Offsets = new Collections.Immutable.ImmutableArray <int>(offsets); Widths = new Collections.Immutable.ImmutableArray <int>(widths); }
public BaseEncoding(IEnumerable<char> alphabet) { Alphabet = new Collections.Immutable.ImmutableArray<char>(alphabet); if (Alphabet.Count == 1) { throw new Exception("Require at least two characters in the alphabet."); } }
public BaseEncoding(IEnumerable <char> alphabet) { Alphabet = new Collections.Immutable.ImmutableArray <char>(alphabet); if (Alphabet.Count == 1) { throw new Exception("Require at least two characters in the alphabet."); } }
public Message(object sender, string method, params object[] args) { Sender = sender; Method = method; Args = new Collections.Immutable.ImmutableArray <object>(args); }
public Message(object sender, string method, params object[] args) { Sender = sender; Method = method; Args = new Collections.Immutable.ImmutableArray<object>(args); }