I am getting the name of an assembly as follows:
String fullName = Assembly.GetAssembly(typeof(CP.Proj.ILogger)).FullName;
And I get the following:
CP.Proj, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
Is there a way to get only the assembly name "CP.Proj"
, without the version and other infos?