You could also create Rectangles that have the same positions and sizes as the relevant textures and use the built-in function to determine if they collide or not. Though, this is limited in that it only works for rectangles.
Code:
Rectangle player, thing;
//Initalize the positions and sizes.
Boolean collides = player.Intersects(thing);