dict.cc dictionary

DictImport.saveIdx Method 

Creates an index file from the index created anIndex

[Visual Basic]
Private Shared Sub saveIdx( _
   ByVal anIndex As Hashtable, _
   ByVal aDictFileName As String, _
   ByVal anIdxFileName As String, _
   ByVal aProgressHandler As IProgress, _
   ByVal aType As DictType _
)
[C#]
private static void saveIdx(
   Hashtable anIndex,
   string aDictFileName,
   string anIdxFileName,
   IProgress aProgressHandler,
   DictType aType
);

Parameters

anIndex
The index. The keys are index keywords as strings, eg. English keywords in the English-German dictionary. The values are ArrayLists of DictEntryRef objects with the references to the keyword descriptions in the dictionary file aDictFileName.
aDictFileName
The name or path to the dict.cc dictionary file.
anIdxFileName
Name or path to the index file to create.
aProgressHandler
Handler for showing progress of the storing operation.
aType
The dictionary type, eg. dict.cc, UDDL

Remarks

The index file created is a binary file (System.IO.BinaryWriter) having the following format:

See Also

DictImport Class | dict Namespace | DictIndex