Fan.Sys.OutStream.write C# (CSharp) Méthode

write() public méthode

public write ( long x ) : OutStream
x long
Résultat OutStream
        public virtual OutStream write(long x)
        {
            try
              {
            m_out.write(x);
            return this;
              }
              catch (System.NullReferenceException e)
              {
            if (m_out == null)
              throw UnsupportedErr.make(@typeof().qname() + " wraps null OutStream").val;
            else
              throw e;
              }
        }