in JetBrains.Profiler.Api/src/Impl/Helper.cs [20:28]
public static bool ThrowIfFail(HResults hr)
{
return hr switch
{
HResults.S_OK => true,
HResults.S_FALSE => false,
_ => throw new InternalProfilerException((int)hr)
};
}