public void CloseQuietly (Java.IO.ICloseable closeable)
		{
			if (closeable != null) {
				try {
					closeable.Close ();
				} catch (RuntimeException rethrown) {
					throw rethrown;
				} catch (Java.Lang.Exception) {
				}
			}
		}