r3xq1
Проверенный
Проверенный
r3xq1
Проверенный
Проверенный
- Сообщения
- 53
- Реакции
- 29
Код:
using System.Reflection;
using System.Runtime.InteropServices;
static void Main()
{
var assembly = typeof(Program).Assembly;
var attribute = (GuidAttribute)assembly.GetCustomAttributes(typeof(GuidAttribute),true)[0];
var id = attribute.Value;
Console.WriteLine(id); // Здесь будет Ваш номер GUID
Console.ReadKey();
}