Fan.Sys.SysOutStream.w C# (CSharp) Méthode

w() public méthode

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