コード例 #1
0
ファイル: TextDataMapper.cs プロジェクト: EIDSS/EIDSS6.1.0.45
        public TextDataMapper(TextDataWriter writer)
        {
            if (writer == null)
            {
                throw new ArgumentNullException("writer");
            }

            _writer = writer;
        }
コード例 #2
0
		public TextDataMapper(TextDataWriter writer)
		{
			if (writer == null) throw new ArgumentNullException("writer");

			_writer = writer;
		}
コード例 #3
0
		public TextDataListMapper(TextDataWriter writer)
			: this(new TextDataMapper(writer))
		{
		}
コード例 #4
0
 public TextDataListMapper(TextDataWriter writer)
     : this(new TextDataMapper(writer))
 {
 }