Meta
Categories
Category Archives: c#
Spring.Net Overview
Configure Add to References Spring.Core.dll Add to App.config or Web.config <sectionGroup name="spring"> <section name="context" type="Spring.Context.Support .ContextHandler, Spring.Core" /> <section name="objects" type="Spring.Context.Support .DefaultSectionHandler, Spring.Core" /> </sectionGroup> Define an object interface public interface ISimpleMessage { String Message { get; } } Do … Continue reading
Posted in c#
Leave a comment