Saturday, July 01, 2006
CopySourceAsHtml
There's a cool tool for Visual Studio 2005 that allows you to copy ans paste code as
HTML. Very usefull when copying/pasting from Visual Studio into a blog entry.
You can get it here
HTML. Very usefull when copying/pasting from Visual Studio into a blog entry.
You can get it here
7 public interface ISpecification
8 {
9 bool isSatisfiedBy(object candidate);
10 }
11
12 public class LogicalAnd : ISpecification
13 {
14 public bool isSatisfiedBy(object candidate)
15 {
16 throw new Exception("The method or operation is not implemented.");
17 }
18 }