What is the difference between array.find method and
arraylist.find method?
Answer Posted / sahilmahammad
Array.find() will find the first occurrence from the given
predicate and return the result.
When in ArrayList there is no method like find() if you
still want to find object than you have to use
BinarySearch() which will return the index of the object
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Which language is used for desktop application?
How to use the sreamReader class to read form a text file?
What is a di class?
How do you prevent a method from being overridden in c#?
What are the advantages of using c#?
Is static class thread safe in c#?
What are classes in c#?
What is the difference between abstract class and interface in c#?
What is JIT (just in time)? how it works?
What are c# collections?
Is type nullable c#?
Is clr a compiler?
Explain anonymous type in c#?
Why dictionary is used in c#?
In how many ways you can overload a method?