blob: c51b8ed3c5be6cb4746d5ad6650d8a972a2f21a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
* Created by:
* Created: Monday, July 02, 2007
*/
using System;
namespace DesignPatterns.Strategy {
public class Knife : IWeapon {
public void UseWeapon( ) {
Console.Out.WriteLine( "Jab with knife!" );
}
}
}
|