当前位置: 首页>>代码示例>>C#>>正文


C# Utility.ToString方法代码示例

本文整理汇总了C#中Utility.ToString方法的典型用法代码示例。如果您正苦于以下问题:C# Utility.ToString方法的具体用法?C# Utility.ToString怎么用?C# Utility.ToString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Utility的用法示例。


在下文中一共展示了Utility.ToString方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Execute

 public CommandExecutionResult Execute(OpenQA.Selenium.IWebDriver driver)
 {
     try
     {
         var  o = new Utility().ExecuteScript(driver, Target, Value);
         if (!string.IsNullOrEmpty(Value))
         {
             if (!Value.Equals(o.ToString(), StringComparison.CurrentCultureIgnoreCase))
             {
                 return new CommandExecutionResult { CommandResult = CommandResult.CannotFindElement, Message = string.Format("Cannot find target:{0} value:{1}", Target, Value) };
             }
         }
         return new CommandExecutionResult { CommandResult = CommandResult.Success, Message = string.Empty };
     }
     catch (TimeoutException ex)
     {
         return new CommandExecutionResult { CommandResult = CommandResult.TimedOut, Message = ex.Message };
     }
     catch (Exception ex)
     {
         return new CommandExecutionResult { CommandResult = CommandResult.Failed, Message = ex.Message };
     }
 }
开发者ID:ngocluu263,项目名称:WebAuto,代码行数:23,代码来源:RunScriptCommand.cs

示例2: Logger_LogAdded

		void Logger_LogAdded( Utility.Logger.LogData data ) {

			int index = LogList.Items.Add( data.ToString() );
			LogList.TopIndex = index;

		}
开发者ID:hirsaeki,项目名称:ElectronicObserver,代码行数:6,代码来源:FormLog.cs

示例3: WriteLog

        public DateTime WriteLog(string logTypeName, Utility.PackingLog.LogBase log)
        {
            DateTime date = log.Date;
            string path = Path.Combine(LOG_PATH, logTypeName);
            string pathAndFileName = Path.Combine(path,
                string.Format("{0}_{1}.log", logTypeName, date.ToString(@"yyyyMMdd")));

            lock (threadRoot)
            {
                _logQueue.Enqueue(
                    delegate()
                    {
                        if (Directory.Exists(path) == false)
                            Directory.CreateDirectory(path);

                        StreamWriter sw = null;
                        try
                        {
                            sw = new StreamWriter(pathAndFileName, true);
                            sw.WriteLine(log.ToString());
                        }
                        catch
                        {
                        }
                        finally
                        {
                            if (sw != null)
                            {
                                sw.Flush();
                                sw.Close();
                                sw.Dispose();
                            }
                        }
                    });
            }

            return date;
        }
开发者ID:vesteksoftware,项目名称:VT5070-SSD,代码行数:38,代码来源:PackingLogManager.cs


注:本文中的Utility.ToString方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。