CSPspEmu.Hle.Formats.EncryptedPrx.GetTagInfo C# (CSharp) Method

GetTagInfo() private method

private GetTagInfo ( uint CheckTag ) : TAG_INFO
CheckTag uint
return TAG_INFO
        private TAG_INFO GetTagInfo(uint CheckTag)
        {
            var Result = g_tagInfo.SingleOrDefault(Tag => Tag.tag == CheckTag);
            if (Result == null) throw(new InvalidDataException(String.Format("Can't find tag1 0x{0:X}", CheckTag)));
            return Result;
        }