C# Класс ABB.Swum.WordData.PositionalFrequencyRecord

The positional frequency data for a given word.
Показать файл Открыть проект Примеры использования класса

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

Свойство Тип Описание
First int
Last int
Middle int
Only int
Total int

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

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

A count of how often the word appears at the beginning of an identifier.
public int First
Результат int

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

A count of how often the word appears at the end of an identifier.
public int Last
Результат int

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

A count of how often the word appears in the middle of an identifier, i.e. not first or last.
public int Middle
Результат int

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

A count of how often the word appears by itself in an identifier.
public int Only
Результат int

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

The total number of times the word appears in identifiers. This must be a sum of First, Middle, Last, and Only.
public int Total
Результат int