コード例 #1
0
ファイル: WPFHelper.cs プロジェクト: flo-l/brettspiel
 public override object ProvideValue(IServiceProvider serviceProvider)
 {
     if (_converter == null)
       {
     _converter = new ArithmeticConverter();
       }
       return _converter;
 }
コード例 #2
0
 public void TestInitilize()
 {
     _arithmeticConverter = new ArithmeticConverter();
 }
コード例 #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ArithmeticIntegerConverter"/> class.
 /// </summary>
 public ArithmeticIntegerConverter()
 {
     _arithmeticConverter = new ArithmeticConverter ();
 }