Beispiel #1
0
        protected override int GetHashCodeCore()
        {
            int hash = 13;

            hash = (hash * 7) + ScreenShot.GetHashCode();
            hash = (hash * 7) + KeyPressedData.GetHashCode();

            return(hash);
        }
 public virtual bool make(KeyPressedData keyPressedData)
 {
     try
     {
         foreach (AppOptions param in m_settings.AppList)
         {
             Maker maker = Maker.CreateInstance(m_dte2, m_settings, param);
             maker.make(keyPressedData);
         }
     }
     catch (Exception e)
     {
         m_logger.Log(e);
     }
     return(true);
 }