Esempio n. 1
0
 public Double ReadDouble()
 {
     lock (m_lock)
     {
         if (!m_locked)
         {
             throw new Exception("Cannot Read from an unlocked Packet.");
         }
         return(m_reader.ReadDouble());
     }
 }