xn.NodeInfo.GetInstance C# (CSharp) Method

GetInstance() public method

public GetInstance ( ) : ProductionNode
return ProductionNode
        public ProductionNode GetInstance()
        {
            IntPtr handle = OpenNIImporter.xnNodeInfoGetHandle(this.InternalObject);
            if (handle == IntPtr.Zero)
                return null;
            else
                return ProductionNode.FromNative(handle);
        }