By tag: simoneb
0
kicks
Template merging with NVelocity and ASP.NET
This article describes how to use the NVelocity template engine to easily parse text templates with a couple lines of code. The provided wrapper is able to parse templates coming from the file system, from memory and from resources embedded in .NET assemblies.
0
kicks
CS2 - a personal source code search engine
CS2 is an open source C# source code search engine, to allow people to easily search through code stored in their machines with a simple web user interface built on ASP.NET.
0
kicks
HeadScriptManager - Registering scripts into the page header
A class library for registering scripts and stylesheets into the page header with ASP.NET 2.0.
0
kicks
Inversion of Control and Dependency Injection with Castle Windsor IV
Last article of the series. It tackles Lifestyles, facilities, lifecycles and release policy.
0
kicks
Inversion of Control and Dependency Injection with Castle Windsor III
Third article of a 4 parts series about IoC and DI with Castle Windsor Container. This article tackles configuration properties, includes, type converters, decorators and configuration conditional statements. Any feedback, questions, ratings are welcome and will be answered as soon as possible.
0
kicks
Inversion of Control and Dependency Injection with Castle Windsor II
Second article of a 4 parts series about IoC and DI with Castle Windsor Container. This article continues the discussion initiated in the previous one and tackles compulsory and optional dependencies, component injection and collections.
Any feedback, questions, ratings are welcome and will be answ...
0
kicks
Inversion of Control and Dependency Injection with Castle Windsor
First article of a 4 parts series about IoC and DI with Castle Windsor Container. This first part is an introduction to the core concepts and a simple example of how to start thinking in terms of IoC.
0
kicks
Indexing and searching source code with Lucene.Net
An academic implementation of a source code search engine with open source frameworks.
0
kicks
How to sort a generic List<T>
Sorting a generic List<T> using anonymous methods and the Comparison<T> delegate.
0
kicks
ASP.NET Internals - The bridge between ISAPI and Application Domains
Second article of the series about ASP.NET Internals. How unmanaged code calls into managed code and how AppDomains are set up.
0
kicks
Searching source code on Koders.com
Koders.com is a code search engine. Here's a wrapper for querying its service with .NET code using a fluent interface class library.
0
kicks
ASP.NET Internals – IIS and the Process Model
First article of a series covering the internals of the ASP.NET framework.
0
kicks
When is a singleton not a singleton? Serialization!
How to prevent a singleton class to be instantiated multiple times when deserialized.
0
kicks
.NET interview question - when is a singleton not a singleton
A tricky interview question about duplicated singleton instances.