.net - javascript [].some() in c# -
does equivalent of javascript array.some() function exist in c#?
yes there is: any
var foo = new object[10]; var = foo.any(x => x != null);
does equivalent of javascript array.some() function exist in c#?
yes there is: any
var foo = new object[10]; var = foo.any(x => x != null);
Comments
Post a Comment