C#中object missing = Type.Missing是什么意思?
1.Type.Missing指的是空类型,因为有些方法你传null给它会出错的,必须要用Type.Missing.
2.表示 Type 信息中的缺少值。 使用 Missing 字段通过反射进行调用,以获取参数的默认值。如果传入一个参数值的 Missing 字段,并且该参数没有默认值,则引发 ArgumentException。 一般在ComInterop使用比较多。如果接触过VSTO,就会发现有很多地方
例子:(AE开发mapControl中的方法DrawShape,第二个参数想用null,但是找了个中间参数)
object o = null;
m_mapControl.DrawShape(pShape, ref o);
时间: 2024-11-06 04:00:44