C# Класс Dev2.Data.Operations.Dev2MergeOperations

Наследование: IDev2MergeOperations
Показать файл Открыть проект

Открытые методы

Метод Описание
Clear ( ) : void
Dev2MergeOperations ( ) : System
Merge ( string value, enMergeType mergeType, string at, string padding, enMergeAlignment mergeAlignment ) : void

Merges the specified value.

Merge ( string value, string mergeType, string at, string padding, string align ) : void

Приватные методы

Метод Описание
CharMergeOp ( string value, string at ) : void

Merge data to the class string using a Character merge, which will merge the data with the specified characters inbetween

IndexMergeOp ( string value, string at, string padding, enMergeAlignment mergeAlignment ) : void

Merge data to the class string using a index merge, mainly used for fixed width,if the index is more than the length of the value then the padding will be applyed useing the padding character

NewLineMergeOp ( string value ) : void

Merge data to the class string using a NewLine merge, which will merge the data with a new line in between

NoneMergeOp ( string value ) : void

Merge data to the class string using a None merge, which will merge the data with nothing inbetween

TabMergeOp ( string value ) : void

Merge data to the class string using a Tab merge, which will merge the data with a Tab inbetween

Описание методов

Clear() публичный Метод

public Clear ( ) : void
Результат void

Dev2MergeOperations() публичный Метод

public Dev2MergeOperations ( ) : System
Результат System

Merge() публичный Метод

Merges the specified value.
value;The value can not be null.
public Merge ( string value, enMergeType mergeType, string at, string padding, enMergeAlignment mergeAlignment ) : void
value string The value.
mergeType enMergeType Type of the merge.
at string At.
padding string The padding.
mergeAlignment enMergeAlignment The merge alignment.
Результат void

Merge() публичный Метод

public Merge ( string value, string mergeType, string at, string padding, string align ) : void
value string
mergeType string
at string
padding string
align string
Результат void