Ejemplo n.º 1
0
        public void TestForGet()
        {
            NativeDictionary dict = new NativeDictionary();

            dict.put("region", 903299);

            Assert.AreEqual(903299, dict.get("region"));

            Assert.AreEqual(-1, dict.get("home"));
        }