public SourceCodeLine(LSTLine Line)
 {
     this.SourceCode = Line.Source;
 }
 public BytecodeLine(LSTLine Line, int SourceCodeLineIndex)
 {
     this.Address             = Line.Address;
     this.Command             = Line.Command;
     this.SourceCodeLineIndex = SourceCodeLineIndex;
 }