C#日月星 20:49:55
TypedValue[] valueArray = new TypedValue[] {new TypedValue((int)DxfCode.Start,"Line"),
new TypedValue((int)DxfCode.Start,"Arc"),
new TypedValue((int)DxfCode.Start,"Circle"),
new TypedValue((int)DxfCode.Start,"polyline"),
new TypedValue((int)DxfCode.Start,"LWPOLYLINE"),
};
选择集,我想选择不同类型的对象,能这样写吗?
求教
[C#]非狐 20:56:33
一个就够了
new TypedValue((int)DxfCode.Start,"*line,circle")
C#日月星 20:57:06
好,我试试
[C#]非狐 20:57:16
继续潜水
C#日月星 20:57:41
多谢
new TypedValue((int)DxfCode.Start,"*line,circle")
为什么要加*?
[VB&c++]阿华 20:59:24
通配符 |