public ModuleLCS GetModule(byte[] source, ref int cursor)
        {
            var retVal = new ModuleLCS();

            retVal.Code = source.LCSerialization <byte[]>(ref cursor);
            return(retVal);
        }
 public byte[] ModuleToByte(ModuleLCS source)
 {
     throw new NotImplementedException();
 }