C# Class FlatFiles.GuidColumn

Represents a column of Guid values.
Inheritance: ColumnDefinition
Datei anzeigen Open project: jehugaleahsa/FlatFiles

Public Methods

Method Description
Format ( object value ) : string

Formats the given object.

GuidColumn ( string columnName ) : System

Initializes a new instance of a GuidColumn.

Parse ( string value ) : object

Parses the given value and returns a Guid instance.

Method Details

Format() public method

Formats the given object.
public Format ( object value ) : string
value object The object to format.
return string

GuidColumn() public method

Initializes a new instance of a GuidColumn.
public GuidColumn ( string columnName ) : System
columnName string The name of the column.
return System

Parse() public method

Parses the given value and returns a Guid instance.
public Parse ( string value ) : object
value string The value to parse.
return object