Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/08/09 17:05:17 (16 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/IntArray2XmlFormatters.cs

    r1454 r1542  
    55
    66  [EmptyStorableClass]
    7   public class IntArray2XmlFormatter : NumberArray2XmlFormatter {
     7  public class IntArray2XmlFormatter : NumberArray2XmlFormatterBase {
    88
    99    public override Type Type {
     
    1313    }
    1414
    15     protected override string formatValue(object o) {
     15    protected override string FormatValue(object o) {
    1616      return o.ToString();
    1717    }
    1818
    19     protected override object parseValue(string o) {
     19    protected override object ParseValue(string o) {
    2020      return int.Parse(o);
    2121    }
Note: See TracChangeset for help on using the changeset viewer.