.NET

MonoDevelop free IDE for C# and other .NET for Win, Linux and MacOS

Posted by admin on March 9, 2010 at 1:21 pm

MonoDevelop is a free and feature advanced IDE for C# and other .NET languages. The great feature of all is that it work on Linux, Windows & Mac OSX. You can change your operating system but you dont need to change your IDE. code completion support for C# code templates & code folding integrated debugger [...]

LiveUI open source framework for .NET websites

Posted by admin on March 9, 2010 at 12:57 pm

It is possible? In the web development open source is similar with PHP & MySQL and a tone of free CMS based on them. Now it is possible with .NET too. How? LiveUI is the answer and is built for .NET 3.5 sp1 Based on pure ASP .NET Pluggable to any asp.net application jQuery and [...]

Visual Studio 2010 and .NET Framework 4 Beta 1

Posted by admin on July 21, 2009 at 12:43 pm

Availble for download as kits and not as virtual machines on Microsoft’s msdn site Visual Studio 2010 .NET Framework 4 Beta 1 Download link http://msdn.microsoft.com/en-gb/netframework/dd819232.aspx

Microsoft SQL Server – Data Types

Posted by admin on May 20, 2008 at 9:39 am

char[(n)] Fixed-length non-Unicode character data with length of n characters. n must be a value from 1 through 8,000. Storage size is n bytes. nchar[(n)] Fixed-length Unicode character data with length of n characters. n must be a value from 1 through 4,000. Storage size is two times n bytes. varchar[(n)] Variable-length non-Unicode character data [...]

LINQ to XML (C#) create new xml document

Posted by admin on April 10, 2008 at 5:14 pm

How to create a new xml with LINQ   var objCars= new[] { new {CarID = 2, CarName = "Ford", Fuel = "Diesel"}, new {CarID = 3, CarName = "Audi", Fuel = "Diesel"}, new {CarID = 4, CarName = "Mercedes", Fuel = "Diesel"}, new {CarID = 1, CarName = "BMW", Fuel = "Diesel"} };   [...]

Formatting C# strings

Posted by admin on March 28, 2008 at 11:02 am

  string s = String.Format("{{ hello to all }}"); Console.WriteLine(s);    //prints ‘{ hello to all }’   int i = 42; string s = String.Format("{0}", i);   //prints ’42′   int i = 42; string s = String.Format("{{{0}}}", i);   //prints ‘{42}’       int i = 42; string s = String.Format("{0:N}", i); [...]