FStream() 개인적인 메소드

private FStream ( ) : bool
리턴 bool
예제 #1
0
 // Flush is a no-op for stream on SqlBytes, because they are all in memory
 public override void Flush()
 {
     if (m_sb.FStream())
     {
         m_sb.m_stream.Flush();
     }
 }
예제 #2
0
파일: SQLBytes.cs 프로젝트: yuzexun/corefx
 // Flush is a no-op for stream on SqlBytes, because they are all in memory
 public override void Flush()
 {
     if (_sb.FStream())
     {
         _sb._stream.Flush();
     }
 }