public bool MoveNext() { if (this.reset) { this.it = OpenNIImporter.xnEnumerationErrorsGetFirst(this.errors.InternalObject); this.reset = false; } else { this.it = OpenNIImporter.xnEnumerationErrorsGetNext(this.it); } return(OpenNIImporter.xnEnumerationErrorsIteratorIsValid(this.it)); }
public bool IsEmpty() { IntPtr first = OpenNIImporter.xnEnumerationErrorsGetFirst(this.InternalObject); return(!OpenNIImporter.xnEnumerationErrorsIteratorIsValid(first)); }