Hiii All..
Working with asp.net we use using statement to add name space to our code behind file (C# file) if we want to use any specific namespace, but if there are unused using statement that are present in your code than it can cause performance issues.
To remove unwanted using statement, we can simply right click on the file and then click Organize Using and then select Remove unused using option.
This will solve your issue.
0 Comment(s)