/// <summary>
 /// Get the generic type in a correct string format
 /// </summary>
 /// <param name="type">Generic type to format</param>
 /// <returns>The formatted type name</returns>
 internal static string FormatType(Type type)
 {
     return(GenericGenerator.ConvertGenericTypeName(type));
 }