Esempio n. 1
0
 internal JNode ToJNode()
 {
     // This ONLY works because of the immutability convention for all Internables
     if (_jNode == null)
     {
         _jNode = JNode.FromObject(this, true);
     }
     return(_jNode);
 }