| 
				  audiobyte[0] = 1; 
            countByte1 = (byte)(readCount / 256); 
            countByte2 = (byte)(readCount % 256); 
            audiobyte[2] = countByte1; 
            audiobyte[3] = countByte2; 
            return audiobyte; 
        } 
        public void audioStreamClose() 
        { 
            this.fStream.Close(); 
        } 
        public string showIP(string str) 
        { 
            return str+" "+this.connQuerry.ConnectionString; 
        } 
        ~audioQuerClass() 
        { 
            if (this.fStream != null) 
            { 
                try 
                { 
                    this.fStream.Close(); 
                } 
                catch 
                { 
                } 
            } 
        } 
    } 
}    			
				 |