Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/ResultFormatters/StringResultFormatter.cs @ 18043

Last change on this file since 18043 was 18043, checked in by dpiringe, 3 years ago

#3026

  • code cleanup
File size: 289 bytes
Line 
1using System;
2
3namespace HeuristicLab.JsonInterface {
4  public class StringResultFormatter : ResultFormatter {
5    public override int Priority => 1;
6
7    public override bool CanFormatType(Type t) => true;
8
9    public override string Format(object o) => o.ToString();
10  }
11}
Note: See TracBrowser for help on using the repository browser.