Exemplo n.º 1
0
 /// <summary>
 /// Creates a new <see cref="UsingDirectiveListInfo"/> with the specified using directive replaced with new usings.
 /// </summary>
 /// <param name="usingInLine"></param>
 /// <param name="newUsingDirectives"></param>
 /// <returns></returns>
 public UsingDirectiveListInfo ReplaceRange(UsingDirectiveSyntax usingInLine, IEnumerable <UsingDirectiveSyntax> newUsingDirectives)
 {
     return(WithUsings(Usings.ReplaceRange(usingInLine, newUsingDirectives)));
 }