本文整理汇总了C#中System.Collections.Hashtable.Count方法的典型用法代码示例。如果您正苦于以下问题:C# Hashtable.Count方法的具体用法?C# Hashtable.Count怎么用?C# Hashtable.Count使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Collections.Hashtable
的用法示例。
在下文中一共展示了Hashtable.Count方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: findIndex
private int findIndex(Hashtable[] ids, int page)
{
for (int i = 0; i < ids.Count(); i++)
{
if (page.ToString() == ids[i]["id"].ToString()) { return i; }
}
return 0;
}
示例2: getMsgTpl
/// <summary>
/// 返回消息内容生成
/// </summary>
/// <param name="userMsg">用户消息</param>
/// <param name="imgMsgs">图文消息们</param>
/// <param name="isMark">是否添加星标</param>
/// <returns>返回消息内容</returns>
private string getMsgTpl(Hashtable userMsg, Hashtable[] imgMsgs, int isMark)
{
string strTp = @"<xml>
<ToUserName><![CDATA[" + userMsg["@FromUserName"] + @"]]></ToUserName>
<FromUserName><![CDATA[ZuoLinSpeaker]]></FromUserName>
<CreateTime>" + converttotimestamp ()+ @"</CreateTime>
<MsgType><![CDATA[news]]></MsgType>
<Content><![CDATA[]]></Content>
<ArticleCount>" + imgMsgs.Count() + @"</ArticleCount>
<Articles>";
int index = 1;
foreach (Hashtable imgMsg in imgMsgs)
{
strTp += @"<item>
<Title><![CDATA[" + imgMsg["title"] + @"]]></Title>
<Discription><![CDATA[" + imgMsg["body"] + @"]]></Discription>
<PicUrl><![CDATA[" + (index == 1 ? imgMsg["picBig"].ToString() : imgMsg["picSmall"].ToString()) + @"]]></PicUrl>
<Url><![CDATA[" + getUserUrl(userMsg, imgMsg["url"].ToString()) + @"]]></Url>
</item>";
index++;
}
strTp += @" </Articles>
<FuncFlag>"[email protected]"</FuncFlag>
</xml>";
return strTp;
}