¡@

Home 

c# Programming Glossary: ienumberable

Api controller declaring more than one Get statement

http://stackoverflow.com/questions/10121152/api-controller-declaring-more-than-one-get-statement

found a problem. If I have the following methods public IEnumberable string GetAll public IEnumberable string GetSpecific int i This.. following methods public IEnumberable string GetAll public IEnumberable string GetSpecific int i This will work. However if I want to.. the .getJSON is set to the GetAllIntegers method public IEnumberable int GetAllIntergers bad naming conventions Is it possible for..

Is there a faster way than this to find all the files in a directory and all sub directories?

http://stackoverflow.com/questions/2106877/is-there-a-faster-way-than-this-to-find-all-the-files-in-a-directory-and-all-sub

Marc Gravell's solution using a queue and returns IEnumberable. I populated a List with the resulting IEnumerable DirectoryInfo.GetFiles..

ReadOnlyCollection or IEnumerable for exposing member collections?

http://stackoverflow.com/questions/491375/readonlycollection-or-ienumerable-for-exposing-member-collections

not allow the user to modify the collection. So if the IEnumberable interface is enough then that is the one to use. Is that a proper..

why use IList or List?

http://stackoverflow.com/questions/8717582/why-use-ilist-or-list

into everything. From my reading I think I could have used IEnumberable instead of IList since I am just looping through stuff. Edit.. to use with nhibernate. Otherwise I might have returned IEnumberable back but not sure. Still can't figure out what the user would..