예제 #1
0
파일: Type.cs 프로젝트: gwlund/Utilis
 protected IsType(
     TOut oPositive = default(TOut),
     TOut oNegative = default(TOut),
     TOut oDefault  = default(TOut))
 {
     m_oEngine = new ConverterEngine <object, TOut, string> (
         DoConvert,
         oPositive,
         oNegative,
         oDefault);
 }
예제 #2
0
파일: Type.cs 프로젝트: gwlund/Utilis
 public NullVisibility2( )
 {
     m_oEngine = new ConverterEngine <object, System.Windows.Visibility, string> (
         DoConvert,
         oPositive: System.Windows.Visibility.Collapsed);
 }