コード例 #1
0
 public TResult <CQueryResult> BuscaString(string stringbuscar, string projectname, int workinglayer)
 {
     try
     {
         m_ComosSession.SetCurrentProjectAndWorkingOverlay(projectname, workinglayer);
         TResult <CQueryResult> table = m_ComosSession.BuscaString(stringbuscar);
         return(table);
     }
     catch (Exception ex)
     {
         Log.WriteLog(ex.Message + ":BuscaString", System.Diagnostics.EventLogEntryType.Warning);
         System.Diagnostics.Debug.Assert(false);
         return(null);
     }
 }