コード例 #1
0
ファイル: ByteDevice.cs プロジェクト: imintsystems/Kean
		public static IByteDevice Wrap(System.IO.Stream stream)
		{
			return stream.NotNull() ? new ByteDevice(stream) { Wrapped = true } : null;
		}
コード例 #2
0
ファイル: ByteDevice.cs プロジェクト: imintsystems/Kean
		public static IByteDevice Open(System.IO.Stream stream)
		{
			return stream.NotNull() ? new ByteDevice(stream) : null;
		}