Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Persistence/3.3/Auxiliary/TypeExtensions.cs @ 1703

Last change on this file since 1703 was 1703, checked in by epitzer, 15 years ago

Create folder with auxiliary classes. (#606)

File size: 352 bytes
Line 
1using System;
2using System.Text;
3
4namespace HeuristicLab.Persistence.Auxiliary {
5
6  public static class TypeExtensions {
7
8    public static string VersionInvariantName(this Type type) {
9      StringBuilder sb = new StringBuilder();
10      TypeStringBuilder.BuildVersionInvariantName(type, sb);
11      return sb.ToString();
12    }
13
14  }
15
16}
Note: See TracBrowser for help on using the repository browser.