Hi
C# does not take 'includes', but 'usings' (like using System;)
(And for me is easier than C++)
IntRect rect1, rect2
;rect1
= new IntRect
(new Vector2i
(100,
100),
new Vector2i
(300,
150));rect2
= new IntRect
(300,
200,
400,
100);if (rect1
.Intersects(rect2
)){ // the code here will execute because the condition is true} Do you know C# and programming? Or you have the project already done in C++ and just need to translate it to C#?