Richard's blog
Anmeldung
|
Registrieren
|
Hilfe
Home
Kontakt
RSS
Atom
RSS Kommentare
Suche
Ordnungsbegriffe
.Net
.Net Visual Studio Team System 2008 development
Accumulator
Aggregate
Anonymous Types
Apps
Architecture
architecture software quality .net asp.net scalability
ASP.Net
books
build server
building
builds
C#
C# 2.0
C# 3.0
C# 3.0 extension methods ruby syntax
C# 3.0 extension methods ruby syntax ranges
C# 3.0 migration upgrade refactor
C# automatic properties refactoring
C# mixin multiple inheritance
C# mixins ruby
C# mixins Ruby extension methods multiple inheritance
certification
changes in software development
CI
Code Snippets
Commands
concurrency
data
Design
Development
exams
exceptions
Extension Methods
Fibonacci Sequence C# 3.0 code best practices
framework
free
Grouping
IGrouping
integration
Ironpython
IronPythonStudio
Lambda Expressions
LINQ
LINQ SQL DataContext
LINQ to SQL
LinqDataSource
LINQ-to-XML
ListView
loading
MCP
MCTS
Mix08
MVC
MVP
NVelocity
passing anonymous types functions
PowerCommands
Pro LINQ
Programming
Quaility
Refactoring
Ruby
Silverlight
Silverlight 2.0
Software
SQLMetal
SubSonic
Team System
testing
Tips
Tools
Uncategorized
VB
VB.Net
ViewState
Visual Studio
Web
WF
workflow foundation
WPF
XML
Navigation
Home
Blogs
Archive
Juni 2007 (1)
Test
My profile
Recent Posts
Hosting an Automated Build Server
von
.Net Smoothie
I’m the build server guy at my company. I’ve been using an automated integration service for about 3 years, and I love it. It really helps keep me disciplined. Before my build server was running, we had a constant problem with missing files...
Abgelegt unter:
Quaility
,
Development
,
Programming
,
build server
,
CI
,
integration
,
testing
,
builds
,
building
A Quick WebService for My Students
von
.Net Smoothie
For my students on the Trivadis .Net 2.0 course this week, I’ve made a quick web-service for you in Visual Basic. For everyone else, I’ll let you use it too. I might not keep it online for long though, and there are no guarantees to...
Abgelegt unter:
Uncategorized
C# Acrobatics : Lambdas and Expression Methods as a replacement for NVelocity
von
.Net Smoothie
I’ve been very quiet recently. (I’m trying to not be so loud, Scott. ) You see, I’ve been writing a lot of ASP.Net code for a site I’m working on. And, to be honest, I’ve been having a lot of trouble. The source code for...
Abgelegt unter:
C# 3.0
,
.Net
,
Extension Methods
,
C#
,
ASP.Net
,
Development
,
Programming
,
ListView
,
Lambda Expressions
,
NVelocity
The Value of Being Free to See the Source
von
.Net Smoothie
Since the source code to ASP.Net was made available, I’ve been using it extensively. Here’s a great example of why it’s so valuable. I’ve been trying to integrate the Enterprise Library 3.1 Exception Handling Block into my application...
Abgelegt unter:
ASP.Net
,
Visual Studio
,
exceptions
Easy Data-loading with LINQ-to-SQL and LINQ-to-XML
von
.Net Smoothie
.Net 3.5 had some nice tricks in it. LINQ-to-XML was one of them. With the new "X"-types, you can make working with XML really easy. VB.Net 9 takes it one step further, and lets you write XML in your code without strings. "Hey Rich, that’s...
Abgelegt unter:
Software
,
LINQ
,
.Net
,
Development
,
Visual Studio
,
LINQ to SQL
,
XML
,
LINQ-to-XML
,
data
,
loading
,
VB.Net
,
VB
Silverlight 2 Poster Available
von
.Net Smoothie
You’re not a real Silverlight developer until you have the poster stuck up on your wall. Apparently these were hot at Mix. Thanks to Brad Abrams for posting it.
Abgelegt unter:
Uncategorized
Design Guidelines for LINQ
von
.Net Smoothie
Have you wondered if and when you should use the new LINQ features in .Net 3.5? Like, where should I put a new extension method? Should I use Func<T> or a custom delegate? How do I best implement a mix-in (extension methods on an interface)? Well...
Abgelegt unter:
Software
,
C# 3.0
,
LINQ
,
.Net
,
Extension Methods
,
Design
,
Development
,
Programming
Read Word Documents in a Web Browser
von
.Net Smoothie
I love this! Not because of the features, but because of the way it works. Tim Sneath just blogged about TextGlow - an online Word docx file reader. The docx format is XML, and Silverlight 2 apps can use LINQ-to-XML to parse it and format it for display...
Abgelegt unter:
.Net
,
Silverlight
Mix 08 WPF Scheduling Application
von
.Net Smoothie
Mix 08 seems to be much more mature than ever before. In previous years there were a lot of ideas being spoken about; this year there are much more implementations of those ideas available to look at. It seems like a lot of people have been working on...
Abgelegt unter:
.Net
,
Design
,
Mix08
,
WPF
,
Apps
Silverlight for Nokia Phones
von
.Net Smoothie
BBC News has just released an article referring to a deal made between Microsoft and Nokia to put Silverlight on mobile phones. Yet another reason to get polishing those WPF skills.
Abgelegt unter:
Uncategorized
Mix 08 Online Presentations
von
.Net Smoothie
My favorite conference is about to start: MIX 08. It’s a great conference for Microsoft developers with an interest in the web. Last year they had some great talks about user experience and architecture. There’s always something interesting...
Abgelegt unter:
.Net
,
ASP.Net
,
Mix08
ExtensionMethod.net - An Extension Methods Database
von
.Net Smoothie
While surfing around tonight, I came across ExtensionMethod.net, a database of useful Extension Methods for C# 3.0 and VB 9. I thought it might be useful, so I added a few of my own extension methods. IComparable<T>.LessThan int.Times int.To There...
Abgelegt unter:
C# 3.0
,
.Net
,
Extension Methods
,
Development
LINQ or DIE
von
.Net Smoothie
I just read a fantastic quote about LINQ from the book Pro LINQ: Language Integrated Query in C# 2008 by Joseph C. Rattz, Jr.: I prefer to think of LINQ as a data iteration engine, but perhaps Microsoft didn’t want a technology named DIE. I think...
Abgelegt unter:
LINQ
,
.Net
,
LINQ to SQL
,
SQLMetal
,
Pro LINQ
Remove and Sort Those Ugly “using-Statements”
von
.Net Smoothie
Visual Studio 2008 has lots of goodies in it, like LINQ syntax, CSS editing, and testing tools. There’s a lesser-known feature which I really appreciate though - the “Remove and Sort Usings” command in the C# editor. You activate the...
Abgelegt unter:
C# 3.0
,
.Net
,
Refactoring
,
Development
,
Visual Studio
,
Programming
,
Commands
,
Tools
,
PowerCommands
Refactoring C# Series: Aggregation of IEnumerable
von
.Net Smoothie
I was recently reading this book about the Ruby programming language, and came across this piece of example code: [1,3,5,7].inject(0) {|sum, element| sum+element} -> 16 [1,3,5,7].inject(1) {|product, element| product*element} ...
Abgelegt unter:
C# 3.0
,
.Net
,
Refactoring
,
C# 2.0
,
Development
,
Ruby
,
Lambda Expressions
,
Accumulator
,
Aggregate
Mehr Beiträge
Nächste Seite »