BTool.DeviceFormUtils.GetUtilResetTypeStr C# (CSharp) Method

GetUtilResetTypeStr() public method

public GetUtilResetTypeStr ( byte resetType ) : string
resetType byte
return string
        public string GetUtilResetTypeStr(byte resetType)
        {
            switch (resetType)
            {
                case 0:
                    return "Hard Reset";
                case 1:
                    return "Soft Reset";
                default:
                    return "Unknown Util Reset Type";
            }
        }