GetDrawables() 공개 메소드

public GetDrawables ( ) : IEnumerable
리턴 IEnumerable
예제 #1
0
        private void ReplaceDrawables(XElement annotation)
        {
            foreach (ConstructorInfo[] constructors in _Types.GetDrawables())
            {
                annotation.AddBeforeSelf(CreateElement(constructors));
            }

            annotation.Remove();
        }