GetConstructors() public method

public GetConstructors ( string typeName ) : IEnumerable
typeName string
return IEnumerable
示例#1
0
        private void ReplaceWithType(XElement annotation, string typeName)
        {
            AddArguments(annotation.Parent, _Types.GetConstructors(typeName));

            annotation.Remove();
        }