예제 #1
0
        public EntityInformation GetEntityByName(string name)
        {
            EntityInformation thisEntity = null;

            if (!this.entities.TryGetValue(name, out thisEntity))
            {
                thisEntity = new EntityInformation();

                thisEntity.AddAttribute("s'appelle " + name);

                this.entities.Add(name, thisEntity);
            }

            return(thisEntity);
        }