Hello,
I have the code below :
C#using System.Collections.Generic;
using System.Configuration;
using System.Linq;
namespace TransactionGenerator
{
public static class GeneratorConfiguration
{
public static int NumberOfThread
{
get
{
return int.Parse(ConfigurationManager.AppSettings["NumberOfThread"]);
}
}
}
}
After cleaning I have this :
C#using System.Configuration;
using System.Linq;
namespace TransactionGenerator
{
public static class GeneratorConfiguration
{
public static int NumberOfThread => int.Parse(ConfigurationManager.AppSettings["NumberOfThread"]);
}
}
The System.Linq is not deleted by the "Code Clean up" but is deleted by "Remove unnecessary Usings" of VS2015.
This using should be removed.
Christian,