Browse by Tags

Related Posts

  • Asynchronous "For" Loops

    With processors set to scale at the CPU level instead of the Mhz level, wouldn't it be great if you could write some code like: StringBuilder output = new StringBuilder(); foreach (MyObj o in collection) async { output.Append(doSomethingHard(o)); } and have the compiler spawn a couple threads to...
    Posted to Jesse Ezell Blog (Weblog) by Jesse Ezell on 08-05-2006, 12:00 AM
    Filed under: Anonymous Methods, Asyncronous Programming, General Software Development, Generics, C#, Threading, .NET
  • Anonymous methods, generics and bears...Oh my

    I stumbled across an interesting conversation on Jeff's(I am not speaking in the third person, this Jeff ) blog. Like any other time, I have plenty to say on the matter.... Microsoft (via FxCop) suggests that you don't expose List<T> via public members. I think the reasons I have heard...
    Posted to MsCorEE (Weblog) by likwid on 03-25-2007, 12:00 AM
    Filed under: .NET, C#, jeff, generics, collections, anonymous methods
  • Anonymous methods, generics and bears...Oh my

    I stumbled across an interesting conversation on Jeff's(I am not speaking in the third person, this Jeff ) blog. Like any other time, I have plenty to say on the matter.... Microsoft (via FxCop) suggests that you don't expose List<T> via public members. I think the reasons I have heard...
    Posted to MsCorEE (Weblog) by likwid on 03-25-2007, 12:00 AM
    Filed under: .NET, C#, jeff, generics, collections, anonymous methods
  • Asynchronous "For" Loops

    With processors set to scale at the CPU level instead of the Mhz level, wouldn't it be great if you could write some code like: StringBuilder output = new StringBuilder(); foreach (MyObj o in collection) { string val; async { val = doSomethingHard(o); } sync { output.Append(val); } } and have the...
    Posted to Jesse Ezell Blog (Weblog) by Jesse Ezell on 08-05-2006, 12:00 AM
    Filed under: General Software Development, .NET, C#, Asyncronous Programming, Threading, Generics, Anonymous Methods
  • Dynamically creating a Sharepoint Web-Service proxy instance

    In my current code, I find myself accessing many Sharepoint web services. In one run of code I can access 5-6 different web services on dozens of different sites, not necessarily even on the same server. Given that I find myself writing a lot of boilerplate code looking like this: using (SiteData siteDataWS...
    Posted to Miscellaneous Debris (Weblog) by Avner Kashtan on 09-03-2007, 12:00 AM
    Filed under: .NET, SharePoint, CodeSnippets, C#, Generics
  • A Quick refresher on List<T>

    I'm a big fan of .NET Generics. In fact, I can't believe I lived without them in .NET 1.1. Generics are pretty much the most powerful feature for C# 2.0. They allow you to define type safe data structures. They give a huge boost in performance, and they allow us to move away from DataTables and DataSets...
    Posted to Ryan Ternier (Weblog) by Ryan Ternier on 10-16-2007, 12:00 AM
    Filed under: ASP.NET , C#, General Software Development, .NET, Generics
  • Indexing and searching business entities using Lucene.Net Framework, part 1

    Conception using generics and reflection of a search engine to index and search content in your business entities without being intrusive. Introduction Today, one of the functionality that almost all web sites implements is a method to index content and give it users the possibility to search that content...
    Posted to Laurent Kempé (Weblog) by lkempe on 11-16-2007, 12:00 AM
    Filed under: Architecture, ASP.NET 2.0, C#, Generics, Reflection, Tools, innoveo solutions, Interoperability
  • Indexing and searching business entities using Lucene.Net Framework, part 2

    Conception using generics and reflection of a search engine to index and search content in your business entities without being intrusive. Part 1 is available following this link Indexing and searching business entities using Lucene.Net Framework, part 1 Lucene.Net presentation Lucene.Net is an open...
    Posted to Laurent Kempé (Weblog) by lkempe on 03-07-2008, 12:00 AM
    Filed under: Tools, ASP.NET 2.0, Interoperability, innoveo solutions, C#, Architecture, Generics, Reflection
  • Indexing and searching business entities using Lucene.Net Framework, part 3

    Conception using generics and reflection of a search engine to index and search content in your business entities without being intrusive. Part 1 and 2 are available following those links Indexing and searching business entities using Lucene.Net Framework, part 1 Indexing and searching business entities...
    Posted to Laurent Kempé (Weblog) by lkempe on 03-07-2008, 12:00 AM
    Filed under: Tools, ASP.NET 2.0, Interoperability, innoveo solutions, C#, Architecture, Generics, Reflection
Page 1 of 1 (9 items)
Page view counter