Beispiel #1
0
 IEnumerable PlayScript.IDynamicClass.__GetDynamicNames()
 {
     if (__dynamicProps != null)
     {
         return(__dynamicProps.__GetDynamicNames());
     }
     return(null);
 }
Beispiel #2
0
        private void WriteDynamicClass(PlayScript.IDynamicClass dc)
        {
            foreach (string key in dc.__GetDynamicNames())
            {
                TypelessWrite(key);
                Write(dc.__GetDynamicValue(key));
            }

            TypelessWrite("");
        }
Beispiel #3
0
        private void WriteDynamicClass(PlayScript.IDynamicClass dc)
        {
            var names = dc.__GetDynamicNames();

            if (names != null)
            {
                foreach (string key in names)
                {
                    TypelessWrite(key);
                    Write(dc.__GetDynamicValue(key));
                }
            }

            TypelessWrite("");
        }