C# Class FSO.Files.HIT.Hitlist

HLS refers to two binary formats that both define a list of IDs, known as a hitlist. One format is a Pascal string with a 4-byte, little-endian length, representing a comma-seperated list of decimal values, or decimal ranges (e.g. "1025-1035"), succeeded by a single LF newline.
显示文件 Open project: RHY3756547/FreeSO Class Usage Examples

Public Properties

Property Type Description
IDs List

Public Methods

Method Description
Hitlist ( byte Filedata ) : System

Creates a new hitlist.

Hitlist ( string Filepath ) : System

Creates a new hitlist.

Private Methods

Method Description
Read ( Stream data ) : void

Method Details

Hitlist() public method

Creates a new hitlist.
public Hitlist ( byte Filedata ) : System
Filedata byte The data to create the hitlist from.
return System

Hitlist() public method

Creates a new hitlist.
public Hitlist ( string Filepath ) : System
Filepath string The path to the hitlist to read.
return System

Property Details

IDs public_oe property

public List IDs
return List