GetPaths() public method

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

            annotation.Remove();
        }