C# Class DataTree

ファイルを表示 Open project: imann24/cs327-bestmobilegameever Class Usage Examples

Public Properties

Property Type Description
Root DataNode,

Public Methods

Method Description
Add ( string value ) : void
DataTree ( ) : UnityEngine
LeafCount ( ) : int
SearchForNodeByValue ( string value ) : DataNode,
ToString ( ) : string
this ( int index ) : DataNode,
this ( string keyInChildren ) : string

Method Details

Add() public method

public Add ( string value ) : void
value string
return void

DataTree() public method

public DataTree ( ) : UnityEngine
return UnityEngine

LeafCount() public method

public LeafCount ( ) : int
return int

SearchForNodeByValue() public method

public SearchForNodeByValue ( string value ) : DataNode,
value string
return DataNode,

ToString() public method

public ToString ( ) : string
return string

this() public method

public this ( int index ) : DataNode,
index int
return DataNode,

this() public method

public this ( string keyInChildren ) : string
keyInChildren string
return string

Property Details

Root public_oe property

public DataNode, Root
return DataNode,