[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.Core.Rdl.Seralization.Common.Coders.Coder-1.-ctor

Coder Constructor

Coder(Func<T, string>, Func<string, T>)

Represents a coder with encode and decode functions for a specific type.

Declaration
public Coder(Func<T, string> Encode, Func<string, T> Decode)
Parameters
Type Name Description
Func<T, string> Encode

Function to encode a value of type T to a string.

Func<string, T> Decode

Function to decode a string to a value of type T.

Coder(Coder<T>)

Declaration
protected Coder(Coders.Coder<T> original)
Parameters
Type Name Description
Coders.Coder<T> original