C# 클래스 ABB.Swum.WordData.PositionalFrequencyRecord

The positional frequency data for a given word.
파일 보기 프로젝트 열기: abb-iss/Swum.NET 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
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