The FromFile method is a static method. Therefore, you do not call it from an instantiation of the object, you call it right from the Class itself. Wrong: Image myPic = new Image; myPic.FromFile("someFileName");// WRONG Correct: Image myPic = Image.FromFile("someFileName");// Correct :)