public FormatOptionForLanguageCSharp(FormatOptionForLanguageCSharp opt)
 {
     m_autoFormatwhenTypeEnter        = opt.m_autoFormatwhenTypeEnter;
     m_autoFormatWhenTypeSemicolon    = opt.m_autoFormatWhenTypeSemicolon;
     m_autoFormatWhenTypeBracketClose = opt.m_autoFormatWhenTypeBracketClose;
 }
 private bool Equals(FormatOptionForLanguageCSharp options)
 {
     return(m_autoFormatwhenTypeEnter.Equals(options.m_autoFormatwhenTypeEnter) &&
            m_autoFormatWhenTypeSemicolon.Equals(options.m_autoFormatWhenTypeSemicolon) &&
            m_autoFormatWhenTypeBracketClose.Equals(options.m_autoFormatWhenTypeBracketClose));
 }