private static string GetTooltipForMember(IMember currentMember, INameable element)
        {
            var type  = "(unknown type)";
            var scope = "(unknown scope)";

            try
            {
                if (element is IMember)
                {
                    var member = element as IMember;
                    scope = member.Parent == currentMember ? "(local)" : member.GetScopeDescription();
                    type  = element.GetType().Name;
                }
                else if (element is Variable)
                {
                    var variable = element as Variable;
                    type  = variable.TypeString;
                    scope = variable.Member.GetType().Name + " " + variable.Member.Name;
                }
            }
            catch (Exception e)
            {
                Log.Error("Error getting type/scope for element " + element.Name + " while generating tooltip", e);
            }

            return(type + ", in " + scope);
        }
Ejemplo n.º 2
0
        public static void ToString_NameIsEmpty_ReturnsClassName(INameable nameable)
        {
            // Arrange
            // Act
            var result = nameable.ToString();

            // Assert
            Assert.AreEqual(nameable.GetType().Name, result);
        }
Ejemplo n.º 3
0
    static void Main(string[] args)
    {
        Dictionary <string, INameable> inhabitants = new Dictionary <string, INameable>();
        int count = int.Parse(Console.ReadLine());

        for (int counter = 0; counter < count; counter++)
        {
            string[] inhabitantInfo = Console.ReadLine().Split();

            switch (inhabitantInfo.Length)
            {
            case 4:
                string    name      = inhabitantInfo[0];
                int       age       = int.Parse(inhabitantInfo[1]);
                string    id        = inhabitantInfo[2];
                string    birthdate = inhabitantInfo[3];
                INameable citizen   = new Citizen(name, age, id, birthdate);
                inhabitants.Add(name, citizen);
                break;

            case 3:
                name = inhabitantInfo[0];
                age  = int.Parse(inhabitantInfo[1]);
                string    group = inhabitantInfo[2];
                INameable rebel = new Rebel(name, age, group);
                inhabitants.Add(name, rebel);
                break;
            }
        }

        int    foodBougth = 0;
        string personName;

        while ((personName = Console.ReadLine()) != "End")
        {
            if (inhabitants.ContainsKey(personName) == false)
            {
                continue;
            }

            INameable person = inhabitants[personName];

            switch (person.GetType().Name)
            {
            case "Citizen":
                foodBougth += 10;
                break;

            case "Rebel":
                foodBougth += 5;
                break;
            }
        }

        Console.WriteLine(foodBougth);
    }
        public static string Print(INameable nameable)
        {
            string result = nameable.Name;

            if (nameable.GetType().IsDefined(typeof(FancyAttribute), false))
            {
                result = $"*** {nameable.Name}";
            }

            return(result);
        }
Ejemplo n.º 5
0
 public static EntityType Resolve(INameable source) =>
 _map[source.GetType()];