Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/14/10 00:42:28 (14 years ago)
Author:
epitzer
Message:

Update API docs. (#548)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Persistence/3.3/Auxiliary/TypeExtensions.cs

    r1779 r3016  
    44namespace HeuristicLab.Persistence.Auxiliary {
    55
     6  /// <summary>
     7  /// Extension methods for the <see cref="Type"/> class.
     8  /// </summary>
    69  public static class TypeExtensions {
    710
     11    /// <summary>
     12    /// Get an assembly qualified name withough version information.
     13    /// </summary>
     14    /// <param name="type">The type.</param>
     15    /// <returns>A full type name without version information.</returns>
    816    public static string VersionInvariantName(this Type type) {
    917      return TypeNameParser.Parse(type.AssemblyQualifiedName).ToString(false);
Note: See TracChangeset for help on using the changeset viewer.