AnalysisImageClick.ScreenCapture.loadBitmap C# (CSharp) Method

loadBitmap() public static method

public static loadBitmap ( string file ) : Bitmap
file string
return System.Drawing.Bitmap
        public static Bitmap loadBitmap(string file)
        {
            Bitmap bmp = null;
            try
            {
                bmp = new Bitmap(file);
            }
            catch (Exception e) { }
            return bmp;
        }