public bool IsOffsetExists(string offset, NSListView listview) { var func = new StructBuilderFunctions(); for (var i = 0; i < listview.Items.Length; i++) { if (offset == func.Getoffsets(listview)[i]) { return(true); } } return(false); }
public bool IsNameExists(string name, NSListView listview) { var func = new StructBuilderFunctions(); for (var i = 0; i < listview.Items.Length; i++) { if (name == func.Getnames(listview)[i]) { return(true); } } return(false); }