Showing related tags and posts accross the entire site.
-
These are the areas I found myself using Lambdas. To provide inline event handlers like button . Click += ( sender , args ) => { }; To find items in a collection var dogs = animals . Where ( animal => animal . Type == "dog" ); For iterating a collection, like animals . ForEach ( animal...
-
Is there anyway to Query Wikipedia using .Net?
-
If your are using .Net 3.5, you can use LINQ. Use the following code //This method returns all files in a specific folder with s pecific extention public System.Collections.Generic.List<FileInfo> GetFiles(string sPath, string sFileExtension) { DirectoryInfo _dirInfo = new DirectoryInfo(sPath);...
-
Hi, Here are 101 LINQ samples and its very good resource of newbies on LINQ,do check it out ! http://msdn.microsoft.com/en-us/vcsharp/aa336746.aspx Thanks, Vikram Pendse. Microsoft MVP http://pendsevikram.blogspot.com