assembly

  1. r3xq1

    C# Получаем GUID программным способом

    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); // Здесь...
  2. r3xq1

    C# Проверяем файл PE (Native или .Net)

    *** Скрытый текст: У Вас недостаточно прав для просмотра скрытого текста. Посетите тему на форуме! ***

Сверху Снизу