BSky.Lifetime.Services.BSkyLicService.GetLicError C# (CSharp) Method

GetLicError() public method

public GetLicError ( int statcode ) : string
statcode int
return string
        public string GetLicError(int statcode)
        {
            byte[] errbytes = new byte[1000];
            IntPtr errmsg = RLMEZ.rlmez_errstring(statcode, errbytes);
            string errstring = Marshal.PtrToStringAnsi(errmsg);
            return errstring;
        }