Microsoft.VisualStudio.Project.NativeMethods.Succeeded C# (CSharp) Method

Succeeded() public static method

public static Succeeded ( int hr ) : bool
hr int
return bool
        public static bool Succeeded(int hr)
        {
            return (hr >= 0);
        }