in JetBrains.HabitatDetector/src/Impl/Windows/WindowsHelper.cs [281:292]
public uint AsDWord()
{
if (Type != REG.REG_DWORD)
throw new FormatException("Expected REG_DWORD");
if (Data == null)
throw new NullReferenceException();
return
((uint)Data[0] << 0) |
((uint)Data[1] << 8) |
((uint)Data[2] << 16) |
((uint)Data[3] << 24);
}