C# Класс SIL.CoreImpl.TsStringDiffInfo

Represents a difference detected in two TsStrings
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
CchDeleteFromOld int
CchInsert int
IchFirstDiff int

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

Метод Описание
TsStringDiffInfo ( int ichFirstDiff ) : System

Initializes a new instance of the TsStringDiffInfo class representing no change.

TsStringDiffInfo ( int ichFirstDiff, int cchInsert, int cchDeleteFromOld ) : System

Initializes a new instance of the TsStringDiffInfo class.

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

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

Initializes a new instance of the TsStringDiffInfo class representing no change.
public TsStringDiffInfo ( int ichFirstDiff ) : System
ichFirstDiff int The character position of the first difference between /// the two TsStrings
Результат System

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

Initializes a new instance of the TsStringDiffInfo class.
public TsStringDiffInfo ( int ichFirstDiff, int cchInsert, int cchDeleteFromOld ) : System
ichFirstDiff int The character position of the first difference between /// the two TsStrings
cchInsert int The number of characters that were inserted starting at the /// location of the first difference
cchDeleteFromOld int The number of characters that were deleted starting /// at the location of the first difference
Результат System

Описание свойств

CchDeleteFromOld публичное свойство

The number of characters that were deleted starting at the location of the first difference
public int CchDeleteFromOld
Результат int

CchInsert публичное свойство

The number of characters that were inserted starting at the location of the first difference
public int CchInsert
Результат int

IchFirstDiff публичное свойство

The character position of the first difference between the two TsStrings
public int IchFirstDiff
Результат int