Rectangle collision detection in C#

Started by
0 comments, last by EdwardD 20 years, 7 months ago
Anybody know how to do this in C#? Back in the day of VB6 I used to use IntersectRect anybody know of how to include or use this with C# or another method of doing this. Shot. ED
Advertisement
Use Rectangle.IntersectsWith

quote:
[C#]
public bool IntersectsWith(
Rectangle rect
);

This topic is closed to new replies.

Advertisement