Hello,
I have this code :
C#namespace MyTest
{
public class Class1
{
public System.DateTime Date1 { get; set; }
public System.DateTime Date2 { get; set; }
}
}
There is no way to simplify the using (like CRC) to get this :
C#using System;
namespace MyTest
{
public class Class1
{
public DateTime Date1 { get; set; }
public DateTime Date2 { get; set; }
}
}
In the sample it's with System but it's the same for all others assemblies.
Thanks,