Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: Graphics.DrawLine 的覆盖
有没有办法直接编辑 Graphics.DrawLine 方法?
我希望对该方法进行一些更改,以包括额外的验证和可能的其他内容。
我只需要指出正确的方向。
为什么你需要?您应该将调用包装到您自己的方法中。
void DrawLine(Graphics g, ...) { Validate(...); g.DrawLine(...); }