GetDrawables() public method

public GetDrawables ( ) : IEnumerable
return IEnumerable
示例#1
0
        private void ReplaceDrawables(XElement annotation)
        {
            foreach (ConstructorInfo[] constructors in _Types.GetDrawables())
            {
                annotation.AddBeforeSelf(CreateElement(constructors));
            }

            annotation.Remove();
        }