/// /// <summary> * (non-Javadoc) /// * </summary> /// * <seealso cref= java.lang.Runnable#run() </seealso> /// protected internal override void runMyThread() { KElement root = d.getRoot(); XmlNodeList nl = root.ChildNodes; for (int i = 0; i < nl.Count; i++) { XmlNode n = nl[i]; if (i % 73 == 0) { root.removeChild(n); } } Console.WriteLine("Completing " + iLoop); }