//private static readonly KeywordExampleComparer Cmp = new KeywordExampleComparer(); public KeywordGroup(string keyword) { SelectedKeywords = new KeywordExample(); SelectedKeywords.AddKeyword(keyword); ContainedKeywords = new Dictionary <string, int>(); ContainedMembers = new List <ClaimableKeywordExample>(); }
public KeywordExample Copy() { KeywordExample ret = new KeywordExample(); foreach (string keyword in this) { ret.AddKeyword(keyword); } return(ret); }