Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/08/09 17:05:17 (15 years ago)
Author:
epitzer
Message:

Numerous small changes, coding conventions, renames, mini refactoring (#548)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/Compact/IntList2XmlFormatter.cs

    r1454 r1542  
    77
    88  [EmptyStorableClass]
    9   public class IntList2XmlFormatter : NumberEnumeration2XmlFormatter {
     9  public class IntList2XmlFormatter : NumberEnumeration2XmlFormatterBase {
    1010
    1111    public override Type Type {
     
    2323    }
    2424
    25     protected override string formatValue(object o) {
     25    protected override string FormatValue(object o) {
    2626      return o.ToString();
    2727    }
    2828
    29     protected override object parseValue(string o) {
     29    protected override object ParseValue(string o) {
    3030      return int.Parse(o);
    3131    }
Note: See TracChangeset for help on using the changeset viewer.