Example #1
0
        public static string Other(eOther type)
        {
            var rand = new Random();

            return(Emoji.Other.TryGetValue(type, out var list)
                ? list[rand.Next(list.Count)]
                : string.Empty);
        }
Example #2
0
 public string OtherField(eOther value)
 {
     return(OtherList[(int)value]);
 }
Example #3
0
 public string Other(eOther type)
 {
     return(Emoji.Other.TryGetValue(type, out var list)
         ? list[_randomizer.Next(list.Count)]
         : string.Empty);
 }