コード例 #1
0
ファイル: FileStream.cs プロジェクト: imintsystems/Waser
        public FileStream(Context loop, System.IO.FileStream stream, int blockSize)
            : base(loop, blockSize)
        {
            if (loop == null)
                throw new ArgumentNullException ("loop");
            if (stream == null)
                throw new ArgumentNullException ("stream");

            this.stream = stream;
        }
コード例 #2
0
ファイル: ApplicationHost.cs プロジェクト: imintsystems/Waser
 static ApplicationHost()
 {
     context = IO.Context.Create();
 }