[This is preliminary documentation and is subject to change.]

Gets or sets skill data of specified index.

Namespace:  MulLib
Assembly:  MulLib (in MulLib.dll) Version: 1.0.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public SkillData this[
	int index
] { get; set; }
Public Default Property Item ( _
	index As Integer _
) As SkillData
public:
property SkillData default[int index] {
	SkillData get (int index);
	void set (int index, SkillData value);
}

Parameters

index
Int32
Skill index.

Return Value

Skill data object.

Exceptions

ExceptionCondition
System..::.ArgumentOutOfRangeExceptionThrown when index is less than zero or equal to or greater than Count.
System..::.ObjectDisposedExceptionObject has been disposed.

See Also