public SequenceLine(string Note, string Instrument, string Volume, List <Effect> Effects)
 {
     this.Note       = Note;
     this.Volume     = (byte)MyConvert.HexToDec(Volume);
     this.Instrument = MyConvert.HexToDec(Instrument);
     this.Effects    = Effects;
 }
 public Effect(string Effect_Prefix, string Argument)
 {
     this.Effect_Prefix = Effect_Prefix;
     this.Argument      = MyConvert.HexToDec(Argument);
 }