Пример #1
0
        static string GetAotId()
        {
            if (!isAotidSet)
            {
                var arr = RuntimeAssembly.GetAotId();
                if (arr != null)
                {
                    aotid = new Guid(arr).ToString("N");
                }
                isAotidSet = true;
            }

            return(aotid);
        }