public bool DeleteValue(int index) { CheckIsArray(); if (index >= ArrayValue.Count) { return(false); } ArrayValue.RemoveAt(index); return(true); }