libsbmlcs.ConversionProperties.getCPtr C# (CSharp) Méthode

getCPtr() static private méthode

static private getCPtr ( ConversionProperties obj ) : HandleRef
obj ConversionProperties
Résultat System.Runtime.InteropServices.HandleRef
        internal static HandleRef getCPtr(ConversionProperties obj)
        {
            return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
        }

Usage Example

        SBMLConverter getConverterFor(ConversionProperties props)
        {
            SBMLConverter ret
                = (SBMLConverter)libsbml.DowncastSBMLConverter(libsbmlPINVOKE.SBMLConverterRegistry_getConverterFor(swigCPtr, ConversionProperties.getCPtr(props)), false);

            if (libsbmlPINVOKE.SWIGPendingException.Pending)
            {
                throw libsbmlPINVOKE.SWIGPendingException.Retrieve();
            }
            return(ret);
        }
All Usage Examples Of libsbmlcs.ConversionProperties::getCPtr