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

Basic Usage
1
2
3
4
import System;
 
Dictionary<int> dict = {};
dict.valueOf();
Reference Equality
1
2
3
4
import System;
 
Dictionary<int> dict = {};
Console.log(dict == dict.valueOf()); // true

Share

HTML | BBCode | Direct Link