using System; namespace csharp.StrategyPatternExample.Strategy { /// /// Implements the strategy; Do nothing. No action is implemented. /// internal class DoNothingStrategy : ICategoryStrategy { #region Methods public void Update(Item item) { } #endregion } }