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


C# Core.ToString方法代码示例

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


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

示例1: Prepare

		static string Prepare(ref Dictionary<string, string> parameters, bool requireVerified, Core.ResponseFormat format)
		{
			if (parameters == null)
			{
				parameters = new Dictionary<string, string>();
			}
			
			if (requireVerified)
			{
				if (Manager.Instance.CurrentUser == null || !Manager.Instance.CurrentUser.IsAuthenticated)
				{
					return "Missing Authenticated User.";
				}
				parameters.Add("username", Manager.Instance.CurrentUser.Name.ToLower());
				parameters.Add("user_token", Manager.Instance.CurrentUser.Token.ToLower());
			}
			
			parameters.Add("format", format.ToString().ToLower());

			return null;
		}
开发者ID:ttesla,项目名称:gj-unity-api,代码行数:21,代码来源:Request.cs

示例2: New

   public static TreeNodeBuilder New(
   Core.Document document,
   Core.IEntry entry,
   TreeNodeCollection nodes
 )
   {
       string name = MakeNodeName( entry.ID );
         string text = entry.ToString();
         string icon = "entry.png";
         TreeNode node = nodes.Add( name, text, icon, icon );
         node.Tag = new TreeNodeBuilder( document, entry, node );
         return (TreeNodeBuilder)node.Tag;
   }
开发者ID:hatsunea,项目名称:KinectSDKBook4CS,代码行数:13,代码来源:TreeNodeBuilder.cs

示例3: Lookup

 public Lookup(Core.Lookup arena)
 {
     ID = arena.LookupID;
     Value = arena.ToString();
 }
开发者ID:secc,项目名称:arena-secc-webservice,代码行数:5,代码来源:Lookup.cs

示例4: CreateScalarExecutor

		/// <summary>
		/// Factory method invoked to create an executor to execute the given scalar command.
		/// </summary>
		/// <param name="command">The command to execute.</param>
		/// <returns>An executor able to execute de command.</returns>
		public IScalarExecutor CreateScalarExecutor(Core.IScalarCommand command)
		{
			if (command == null) throw new ArgumentNullException("command", "Command cannot be null.");
			if (command.IsDisposed) throw new ObjectDisposedException(command.ToString());

			if (!object.ReferenceEquals(this, command.Link))
				throw new InvalidOperationException(
					"This link '{0}' is not the same as the link of command '{1}'."
					.FormatWith(this, command));

			return new ScalarExecutor(command);
		}
开发者ID:JackWangCUMT,项目名称:Kerosene.ORM,代码行数:17,代码来源:DataLink.cs

示例5: SetMessage

		public void SetMessage(Core.CString message)
		{
			this.WriteText(message.ToString());
		}
开发者ID:Gunderak,项目名称:OpenGraal.RemoteControl-cs,代码行数:4,代码来源:RCFileBrowser.cs


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