Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.DebugEngine/Utils.cs @ 4871

Last change on this file since 4871 was 4871, checked in by epitzer, 13 years ago

Refactoring and modularization of DebugEngine (#47)

File size: 405 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Persistence.Auxiliary;
6
7namespace HeuristicLab.DebugEngine {
8  public static class Utils {
9    public static string TypeName(object obj) {
10      if (obj == null)
11        return "null";
12      return TypeNameParser.Parse(obj.GetType().ToString()).GetTypeNameInCode(true);
13    }
14  }
15}
Note: See TracBrowser for help on using the repository browser.