GetDrawables() публичный Метод

public GetDrawables ( ) : IEnumerable
Результат IEnumerable
Пример #1
0
        private void ReplaceDrawables(XElement annotation)
        {
            foreach (ConstructorInfo[] constructors in _Types.GetDrawables())
            {
                annotation.AddBeforeSelf(CreateElement(constructors));
            }

            annotation.Remove();
        }