public abstract Bys newM(NetwBase rw, byte[] m, int off, int len);
/// <summary> /// the constructor by base stream. /// </summary> /// <param name="rwb"></param> public NetwImpl(NetwBase rwb) { this.rwb = rwb; }
public override Bys newM(NetwBase rw, byte[] m, int off, int len) { throw new NotImplementedException(); }
public NetwImpl_(NetwBase rwb) : base(rwb) { }
public override Bys newM(NetwBase rw, byte[] m, int off, int len) { return new BysImpl(this, m, off, len); }
public NetwImpl_T(NetwBase rw) : base(rw) { }