Archive for '.NET'
Microsoft releases new ASP.NET charting control for … FREE!
Posted on 30. Nov, 2008 by bryan.
This past week Scott Guthrie announced a new ASP.NET charting control from Microsoft for free. Details are in Scott’s blog posting, from the screen shots it looks quite capable. I’m anxious to have an opportunity to kick the tires on this control, thanks MS!
Continue Reading
My First Linq Program
Posted on 18. Jun, 2007 by bryan.
I successfully coded my very first LINQ program today, and man is it a doozie! Observe:
class Program
{
static void Main(string[] args)
{
List<Student> studentList = new List<Student>();
studentList.Add(new Student(“Charlie”, “Brown”));
[...]

