Luxand.FSDK.GetHardware_ID C# (CSharp) Method

GetHardware_ID() public static method

public static GetHardware_ID ( string &HardwareID ) : int
HardwareID string
return int
        public static int GetHardware_ID(out string HardwareID)
        {
            StringBuilder tmps = new StringBuilder(1024);
            int res = FSDK_GetHardware_ID_Old(tmps);
            HardwareID = tmps.ToString();
            return res;
        }
FSDK