Beispiel #1
0
        private void SetCOMM(FrameFlagSet ffs, byte[] data)
        {
            UnsunchTextFrame frame = new UnsunchTextFrame(ffs, data);

            if (this._COMM == null || this._COMM.Length == 0)
            {
                this._COMM = new UnsunchTextFrame[] { frame };
            }
            else
            {
                this._COMM = Generic.Add(this._COMM, frame);
            }
        }
Beispiel #2
0
        private void SetUSLT(FrameFlagSet ffs, byte[] data)
        {
            UnsunchTextFrame frame = new UnsunchTextFrame(ffs, data);

            if (this._USLT == null || this._USLT.Length == 0)
            {
                this._USLT = new UnsunchTextFrame[] { frame };
            }
            else
            {
                this._USLT = Generic.Add(this._USLT, frame);
            }
        }