7067872 comment Comment Re:My first question would be... (Score 1) 320 by JamesNK on Tuesday November 17, 2009 @01:36AM (#30126132) Attached to: Microsoft Open Sources<nobr> <wbr></nobr>.NET Micro Framework And the browser hosted Silverlight which has its own version of the .NET framework.
3131729 comment Comment Re:What is this ignorance? (Score 1) 143 by JamesNK on Wednesday January 21, 2009 @05:49AM (#26543685) Attached to: The ASP.NET Code Behind Whitehouse.gov Sure you can. Create your own hyperlink control inheriting from the one in ASP.NET and exclude writing the id.
2688813 comment Comment Re:LINQ is over-hyped (Score 2, Informative) 127 by JamesNK on Friday January 11, 2008 @10:27PM (#22009526) Attached to: Inside Visual Studio 2008 from n in mylistwhere (n => n < 10)select (n => n) That is just poor code. A more elegant example using LINQ would be:mylist.Where(n => n < 10)I have been using LINQ for the past couple of months and have found it fantastic.