コード例 #1
0
 CodeAction NewUsingAction(RefactoringContext context, AstNode node, string ns)
 {
     return(new CodeAction("using " + ns + ";", s => UsingHelper.InsertUsingAndRemoveRedundantNamespaceUsage(context, s, ns)));
 }