コード例 #1
0
 public void GetProperties()
 {
     var conv = new ColorConverter();
     Assert.Null(conv.GetProperties(Color.Red));
     Assert.Null(conv.GetProperties(null, Color.Red, null));
     Assert.Null(conv.GetProperties(null, Color.Red,
         typeof(Color).GetCustomAttributes(true).OfType<Attribute>().ToArray()));
 }