SgDotNet
Singapore Professional .NET User Group -For Cool Developers
All Tags » C# (RSS)

Browse Site by Tags

Showing related tags and posts across the entire site.
  • Aggr from ASP.NET Blog: Creating an Outlook Message File with C#

    Following's a post I made on my ASP.NET Weblog ( http://weblogs.asp.net/darrensim/default.aspx ) I've been working with a government agency lately, and came to notice that the software system they're using dates back to the stone ages. Many a time, the head of department is required to send an email...
    Posted to Darren Sim's Blog on 06-29-2008
    Filed under: Office 2007, Cool Stuff, Automation, Outlook, C#
  • www.dotnetvideos.net releases Implementing Optimistic conncurrency etc., in ASP.NET 2.0 Tutorial videos..

    Hi all, www.dotnetvideos.net giving away FREE Apress books listed below and also $495/- productivity toolset from Syncfusion for FREE. In addition, I would also like to inform you that I found out from their news letter that www.dotnetvideos.net added 11 more new videos to its web site for Editing and...
    Posted to Products & Services by venkat443 on 05-15-2008
  • Re: C# 3.0

    I especially like the lambda expressions. Imagine this: //returning even numbers List<int> arrInt=new List<int>{1,2,3,4,5,6,7,8,9,10};//new functionality in .NET 3.5 in .NET 2.0 List<int> evenInt=arrInt.FindAll(delegate(int i) { return i%2==0;}); in .NET 3.5 List<int> evenInt...
    Posted to C# by hendry on 04-10-2008
  • "NHibernate Part 1: Hello World with NHibernate" article - Getting to work in Microsoft SQL Server 2005

    You can check out this article here http://sdesmedt.wordpress.com/2006/04/05/hello-world-with-nhibernate/ I can say it is really easy to get started. However if you follow the codes in there, you will start to realize to face problems getting it running. I will provide some tips to get it work. 1) Requires...
    Posted to Wen Ching's Blog by chuawenching on 09-21-2007
    Filed under: C#, NHibernate
  • Managing Resources in .NET

    A simple tip for managing your resources smartly with ' using ' using (SqlConnection sqlConn = new SqlConnection(...)) { sqlConn.Open(); using (SqlCommand sqlCmd = new SqlCommand(..., sqlConn)) { using (SqlDataReader dr = cmd.ExecuteReader()) { // Access elements items here } } } Extract from...
    Posted to Microlau's Blog by microlau on 08-16-2007
    Filed under: C#
  • Telerik Code Converter is impressive

    I believe this is something new which I will recommend you all to check this out. You can see this link here http://converter.telerik.com/ I had tried with couple of .NET 2.0 codes and it worked fine. Pretty impressive. I tried with a basic example below on a method returning a generic list type. C#...
    Posted to Wen Ching's Blog by chuawenching on 04-04-2007
    Filed under: C#
Page 1 of 1 (20 items)
Copyright SgDotNet 2004-2008
Powered by Community Server (Commercial Edition), by Telligent Systems