/// <summary> /// Initializes a new instance of the <see cref="DtzIoHelper" /> class. /// </summary> private DtzIoHelper(IList<string> stringPool) { ioStream = new IoStream(); Reader = new DateTimeZoneReader(ioStream.GetReadStream(), stringPool); Writer = new DateTimeZoneWriter(ioStream.GetWriteStream(), stringPool); this.stringPool = stringPool; }
/// <summary> /// Initializes a new instance of the <see cref="DtzIoHelper" /> class. /// </summary> private DtzIoHelper(IList <string> stringPool) { ioStream = new IoStream(); Reader = new DateTimeZoneReader(ioStream.GetReadStream(), stringPool); Writer = new DateTimeZoneWriter(ioStream.GetWriteStream(), stringPool); this.stringPool = stringPool; }
/// <summary> /// Initializes a new instance of the <see cref="WriteStreamImpl" /> class. /// </summary> /// <param name="stream">The <see cref="IoStream" /> to read from.</param> public WriteStreamImpl(IoStream stream) { ioStream = stream; }
/// <summary> /// Initializes a new instance of the <see cref="ReadStreamImpl" /> class. /// </summary> /// <param name="stream">The <see cref="ioStream" /> to read from.</param> public ReadStreamImpl(IoStream stream) { ioStream = stream; }