コード例 #1
0
        //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>();
        }
コード例 #2
0
        public KeywordExample Copy()
        {
            KeywordExample ret = new KeywordExample();

            foreach (string keyword in this)
            {
                ret.AddKeyword(keyword);
            }
            return(ret);
        }