libsbmlcs.Species.unsetCharge C# (CSharp) Method

unsetCharge() public method

public unsetCharge ( ) : int
return int
        public int unsetCharge()
        {
            int ret = libsbmlPINVOKE.Species_unsetCharge(swigCPtr);
            return ret;
        }

Usage Example

コード例 #1
0
 public void test_Species_setCharge3()
 {
     Species c = new  Species(2,1);
       int i = c.unsetCharge();
       assertTrue( i == libsbml.LIBSBML_OPERATION_SUCCESS );
       assertEquals( false, c.isSetCharge() );
       c = null;
 }