valueOf
Summary
Returns the dictionary object.
Usage
private external valueOf()
Returns
A reference to the dictionary object.
Description
Returns a reference to the dictionary object.
Examples
1 2 3 4 | import System; Dictionary< int > dict = {}; dict.valueOf(); |
1 2 3 4 | import System; Dictionary< int > dict = {}; Console.log(dict == dict.valueOf()); // true |
Share
HTML | BBCode | Direct Link