var fourOrMore = balance.Where(x => x.Length > 4).ToList();
Would do exactly what you need, you would need to add using System.Linq;
to you class file
8
solved How to look through arrays? [duplicate]
var fourOrMore = balance.Where(x => x.Length > 4).ToList();
Would do exactly what you need, you would need to add using System.Linq;
to you class file
8
solved How to look through arrays? [duplicate]