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/DoubleArray2XmlFormatters.cs

    r1454 r1542  
    66
    77  [EmptyStorableClass]
    8   public class DoubleArray2XmlFormatter : NumberArray2XmlFormatter {
     8  public class DoubleArray2XmlFormatter : NumberArray2XmlFormatterBase {
    99
    1010    public override Type Type {
     
    1414    }
    1515
    16     protected override string formatValue(object o) {
     16    protected override string FormatValue(object o) {
    1717      return ((double)o).ToString("r", CultureInfo.InvariantCulture);
    1818    }
    1919
    20     protected override object parseValue(string o) {
     20    protected override object ParseValue(string o) {
    2121      return double.Parse(o);
    2222    }
Note: See TracChangeset for help on using the changeset viewer.