C# Class SwfDotNet.IO.Dictionary

Dictionary class. The dictionary is a repository of tags associated with unique character ID.
Inheritance: System.Collections.Hashtable
Show file Open project: bladecoding/SwfExport

Public Methods

Method Description
Add ( DefineTag defineTag ) : void

Adds the specified define tag.

Add ( ushort characterId, DefineTag defineTag ) : void

Adds the specified character id.

Dictionary ( ) : System

Creates a new Dictionary instance.

Remove ( DefineTag defineTag ) : void

Removes the specified define tag.

Remove ( ushort characterId ) : void

Removes the specified character id.

this ( ushort characterId ) : DefineTag

Gets or sets the DefineTag with the specified character id.

Method Details

Add() public method

Adds the specified define tag.
public Add ( DefineTag defineTag ) : void
defineTag DefineTag Define tag.
return void

Add() public method

Adds the specified character id.
public Add ( ushort characterId, DefineTag defineTag ) : void
characterId ushort Character id.
defineTag DefineTag Define tag.
return void

Dictionary() public method

Creates a new Dictionary instance.
public Dictionary ( ) : System
return System

Remove() public method

Removes the specified define tag.
public Remove ( DefineTag defineTag ) : void
defineTag DefineTag Define tag.
return void

Remove() public method

Removes the specified character id.
public Remove ( ushort characterId ) : void
characterId ushort Character id.
return void

this() public method

Gets or sets the DefineTag with the specified character id.
public this ( ushort characterId ) : DefineTag
characterId ushort
return DefineTag