public override string GetResult(ProfileInfo info)
        {
            string result = WEB_DATA_LIST_BEGIN;

            for (int i = 0; i < Enum.GetValues(typeof(EmotionsType)).Length; i++)
            {
                double weight = info.GetEmotionWeight((EmotionsType)i);
                if (weight > MINIMUM_WEIGHT_VALUE)
                {
                    result = string.Concat(
                        result,
                        weight.ToString(),
                        ",");
                }
            }
            return(string.Concat(result, WEB_DATA_LIST_END));
        }
예제 #2
0
        public override string GetResult(ProfileInfo info)
        {
            Dictionary <EmotionsType, double> emotionLikeWeight = CreateData(info);
            string result = WEB_DATA_LIST_BEGIN;

            for (int i = 0; i < Enum.GetValues(typeof(EmotionsType)).Length; i++)
            {
                double weight = info.GetEmotionWeight((EmotionsType)i);
                if (weight > MINIMUM_WEIGHT_VALUE)
                {
                    result = string.Concat(
                        result,
                        emotionLikeWeight[(EmotionsType)i],
                        ",");
                }
            }
            return(string.Concat(result, WEB_DATA_LIST_END));
        }