明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 941|回复: 1

关于foreach不能在“方法组”上执行,怎样理解?

[复制链接]
发表于 2014-7-3 16:19:27 | 显示全部楼层 |阅读模式
我写的一个方法,提示
public static void 选择1()
        {
            Document doc = Application.DocumentManager.MdiActiveDocument;
            Database db = doc.Database;
            Editor ed = Application.DocumentManager.MdiActiveDocument.Editor;
            PromptEntityResult ent = ed.GetEntity("\n 请选择直线");
            ObjectId id = ent.ObjectId;
            using (Transaction trans1 = doc.TransactionManager.StartTransaction())
            {
                Entity ent1 = (Entity)id.GetObject(OpenMode.ForRead);
                PromptSelectionResult per = ed.SelectOnLine((Line)ent1);
                SelectionSet ss = per.Value;
                using (Transaction trans2 = doc.TransactionManager.StartTransaction())
                {
                    //遍历选择集中的对象,修改颜色为红色
                    foreach (ObjectId id1 in ss.GetObjectIds)
                    {
                        Entity ent2 = (Entity)trans2.GetObject(id1, OpenMode.ForRead);
                        ent2.ColorIndex = 1;
                    }
                    trans2.Commit();
                }
                trans1.Commit();
            }
        }


提示    foreach不能在“方法组”上执行,是什么意思,请高手赐教
 楼主| 发表于 2014-7-3 16:26:34 | 显示全部楼层
查了一下,少了一对“()”,应该是   foreach (ObjectId id1 in ss.GetObjectIds())
不好意思,给大家添麻烦了,我不是故意刷屏的。
您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-25 12:54 , Processed in 0.145409 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表