Reputation: 12216
Is it possible for a C# code snippet to add lines to the "using" block at the top of a .cs file? I see the element for VB but that doesn't work in C#.
Upvotes: 2
Views: 628
Reputation: 292405
The Imports element is only supported for Visual Basic projects.
There is no equivalent for C#
Upvotes: 5