本文整理汇总了C#中Chat类的典型用法代码示例。如果您正苦于以下问题:C#Chat类的具体用法?C#Chat怎么用?C#Chat使用的例子?这里精选的类代码示例或许可以为您提供帮助。
示例1:Parse
publicNetworkObjectParse(Matchmatch)
{
Chatchat=newChat{
Now={
Players=newList
(){
newPlayer(){
Name=match.Groups["name"].Value,
Uid=match.Groups["uniqueid"].Value
}
},
Content=newList(){
match.Groups["text"].Value.Replace("
","")
}
},
Origin=ChatOrigin.Player
};
if(String.Compare(match.Groups["context"].Value,"say",StringComparison.OrdinalIgnoreCase)==0){
chat.Scope.Groups=newGroupingList();
}
else{
//Canwegetateamidentifierhere?
chat.Scope.Groups=newGroupingList(){
newGrouping(){
Type=Grouping.Team
}
};
}
returnchat;
}
原文链接:http://www.jxszl.com/biancheng/C/556737.html