Fan.Sys.SysOutStream.w C# (CSharp) Method

w() public method

public w ( int v ) : OutStream
v int
return OutStream
        public override OutStream w(int v)
        {
            try
              {
            outStream.WriteByte((byte)v);
            return this;
              }
              catch (IOException e)
              {
            throw IOErr.make(e).val;
              }
        }