public int GetYearToMonth(OciHandle handle, OciErrorHandle errorHandle) { int years = 0; int months = 0; OciCalls.OCIIntervalGetYearMonth(handle, errorHandle, out years, out months, this.handle); return((years * 12) + months); }