What is the best way to delete unused statements and orders using statements with Xamarin Studio?
I want to have a tool or extension / addin for Xamarin Studio to delete and sort using operators in all C # project files (on MAC).
Code example:
using System;
using System.Collections;
namespace DateInserter
{
public enum DateInserterCommands
{
InsertDate,
}
}
After refactoring:
namespace DateInserter
{
public enum DateInserterCommands
{
InsertDate,
}
}
source
share