BRM_Tools.CTracer.CTracer C# (CSharp) Method

CTracer() public method

public CTracer ( string i_fileName, bool i_bEnabled ) : System
i_fileName string
i_bEnabled bool
return System
        public CTracer( string i_fileName, bool i_bEnabled )
        {
            //
            // TODO: Fügen Sie hier die Konstruktorlogik hinzu
            //
            m_fileName = i_fileName;
            m_traceEnabled = i_bEnabled;
            if ( m_traceEnabled )
            {
                m_textWriter = new System.IO.StreamWriter( m_fileName );
            }
        }