|
|
browse.develop.com
Browse.develop.com is a community that was established to collect and
organize valuable web information. Our technical staff have selected and
indexed information and courses that they feel will help you stay
current on best practices across the SDLC.
|
47 Articles match "C#"
|
Related DevelopMentor Courses
|
MORE
|
|
Foundations of C# Programming and the.NET Framework
Distinguish between "implementation inheritance" and "interface inheritance" Use ADO.NET to connect to SQL Server and run a simple query Build a basic Windows Forms GUI Essential C# is ".NET Explore core C# features like classes, inheritance, namespaces, and events. In this course, you spend half your time on the C# language and half on the.NET platform. What types are available in the.NET Framework class library Come and learn how to use C# to build.NET applications. Object C# has a unified type system: all types inherit from the library class Object. field)?
DevelopMentor Courses
- Friday, June 12, 2009
Virtual Foundations of C# Programming and the.NET Framework (Part 1)
Examine core language features such as types, variables, and control constructs Use object-oriented features such as class, interface, protection, and inheritance Use properties to implement the private data/public accessor pattern Avoid dll conflicts during deployment Virtual Foundations of C# Programming and the.NET Framework is ".NET Explore core C# features like classes, inheritance, namespaces, and events. In part one of this series on programming C#, we'll discuss fundamental concepts such as the Common Language Runtime (CLR), garbage collection, and deployment.
DevelopMentor Courses
- Wednesday, February 17, 2010
Essential LINQ with the Entity Framework
In this course, you learn to: Leverage new features of C# 3.0, Essential LINQ with the Entity Framework Day 1 New Features of C# 3.0 The latest version of the C# programming language comes with many new features intended to increase developer productivity, including automatic properties, object initializers, collection initializers, and partial methods. Learn to combine flavors of LINQ to query and transform in-memory collections, XML data sources, and relational databases. You'll get answers to these questions: When should I use LINQ instead of "classic" ADO.NET?
DevelopMentor Courses
- Friday, June 12, 2009
|
265 Articles match "C#"
|
The Latest from DevelopMentor
|
MORE
|
|
Converting a C# workflow into XAML
A interesting question that came up last week was how to convert workflows defined in C# to XAML. co worker of one of the attendees of the Essential Windows Workflow Foundation 4 course had been experiencing a lot of problems with the workflow designer and decided to create their workflows in C# instead of using the designer to generate XAML. Take the following workflow defined in C#. While these workflows run just fine you do lose the visual aspect of the designer, one of the benefits of workflow in the first place. Enjoy! www.TheProblemSolver.nl.
The Problem Solver
- Saturday, August 28, 2010
What’s new in C# 4.0?
If you want to know more about C#4.0 Abstract: What’s new in C# 4.0? quick introduction to the new language features of C#4.0: I’ll be speaking at the upcoming Bangor Area.NET Developer (BAND) meeting (July 27th). then come and join the fun. More info here. Mark Blomsma. Late-Binding Support, Named and Optional Parameters and last but not least Covariance and Contravariance
The Blomsma Code
- Thursday, July 15, 2010
What’s new in C# 4.0?
If you want to know more about C#4.0 Abstract: What’s new in C# 4.0? quick introduction to the new language features of C#4.0: I’ll be speaking at the upcoming Bangor Area.NET Developer (BAND) meeting (July 27th). then come and join the fun. More info here. Mark Blomsma. Late-Binding Support, Named and Optional Parameters and last but not least Covariance and Contravariance
The Blomsma Code
- Thursday, July 15, 2010
|
-
|
The Best from DevelopMentor
|
MORE
|
-
Recommended reading for C# starters
I regularly get asked for references on which books are interesting for people starting with C# and.NET. The C# Language. Essential C# 2.0 CLR via C#, Second Edition by Jeffrey Richter. Essential ASP.NET With Examples in C# by Fritz Onion. Tags: NET C I'm not good at remembering books, but usually squeeze out a reference. Today I ran across a good list of Essential Reading compiled by my DevelopMentor colleague Tony Sneed. I'm shamelessly copying it here since I concur with his list. Essential.Net 2.0 Reading. by Mark Michaelis.Net in General. Web Apps.
The Blomsma Code
- Saturday, January 17, 2009
-
Some useful DateTime extensions
Tags: NET C
The Blomsma Code
- Thursday, August 20, 2009
-
Another reason for not using C# lock keyword
The C# keyword at first glance looks like a real god send…since lock( myLock ) { // Critical code } Generates an “exception proof acquisition and release of the monitor, saving you from having to write Monitor.Enter(myLock); try { // Critical code } finally { Monitor.Exit(myLock) } So here at DM we have preached for the last few years how evil the C# lock keyword is. This is mainly due to the fact that the process of acquiring the monitor will wait indefinitely for the monitor, Im not going into a load of detail about this here as enough has already been written on the subject.
.NET Mutterings
- Sunday, October 8, 2006
-
Highlighting C# with JavaScript
only had one problem with it: it had no support for C#! that includes my support for C# and a simple stylesheet that mimics the colors Visual Studio uses when highlighting code. Tags: C# JavaScript I recently came across Ivan Sagalaev’s highlight.js project when looking for a way to highlight the source code on my weblog without having to paste a mess of HTML into my posts. It’s well-written and easy to use. Rather than complain, I put together a language file and submitted it to Ivan for his approval. My language file is nowhere near as smart as Visual Studio.
Jason Diamond
- Sunday, September 21, 2008
-
Topological Sort Extension Method
Here’s a simple example showing it in action: var thingies = new List < Thingy > { new Thingy { Name = "A" , Dependencies = { "B" , "C" } } , new Thingy { Name = "B" } , new Thingy { Name = "C" , Dependencies = { "B" } } , } ; var sortedThingies = thingies. Assert ( sortedThingies [ 1 ] Name == "C" , "Second thingy should have been C!" Tags: NET C# LINQ Programming Pop ( ) ; } output. Dependencies.
Jason Diamond
- Sunday, June 7, 2009
-
String.Humanize()
StringBuilder sb = new StringBuilder (); char last = char.MinValue; foreach ( char c in source ). {. if ( char.IsLower( last ) == true && char.IsUpper( c ) == true ). {. sb.Append( c ); last = c; }. Tags: C Another extension method… I just ran into the need to humanize some strings into more friendly ones. This can be used to humanize the name of an enumeration. It will turn a “CamelCasedString” into a “Camel Cased String”. public static string Humanize( this string source ). {. sb.Append( ' ' ); }. return sb.ToString(); }. }.
The Blomsma Code
- Wednesday, December 23, 2009
-
DDE Client –> NDde on CodePlex
I’ve been doing some research into writing a DDE client in C#. Tags: C Turns out there is project on CodePlex called NDde ( [link] ) which offers a good starting point. For some reason it took many Bing’s and Google’s before stumbling onto this little gem.
The Blomsma Code
- Wednesday, December 2, 2009
|
|
|