C# Class FlatFiles.GuidColumn

Represents a column of Guid values.
Inheritance: ColumnDefinition
Afficher le fichier Open project: jehugaleahsa/FlatFiles

Méthodes publiques

Méthode 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 méthode

Formats the given object.
public Format ( object value ) : string
value object The object to format.
Résultat string

GuidColumn() public méthode

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

Parse() public méthode

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