中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

.net 讀取項目AssemblyInfo.cs屬性值

小云
103
2023-08-16 13:49:00
欄目: 編程語言

要在.NET中讀取項目的AssemblyInfo.cs文件中的屬性值,可以使用System.Reflection命名空間中的Assembly類。

以下是一個示例代碼,它演示如何讀取AssemblyInfo.cs文件中的AssemblyTitle屬性值:

using System;
using System.Reflection;
class Program
{
static void Main()
{
// 獲取當前程序集的Assembly對象
Assembly assembly = Assembly.GetExecutingAssembly();
// 獲取AssemblyTitle屬性值
string assemblyTitle = assembly.GetCustomAttribute<AssemblyTitleAttribute>()?.Title;
// 打印AssemblyTitle屬性值
Console.WriteLine("Assembly Title: " + assemblyTitle);
}
}

上述代碼首先通過Assembly.GetExecutingAssembly()方法獲取當前程序集的Assembly對象。然后,它使用GetCustomAttribute<T>方法獲取指定類型的自定義屬性。在這里,我們使用AssemblyTitleAttribute類型來獲取AssemblyTitle屬性值。

請注意,GetCustomAttribute<T>方法返回的是指定類型的自定義屬性的實例,因此我們還需要通過屬性實例訪問屬性的值。在這里,我們使用Title屬性來獲取AssemblyTitle屬性的值。

這只是一個示例,你可以根據自己的需要修改代碼來讀取其他屬性值。

0
竹溪县| 衡水市| 天柱县| 当雄县| 昔阳县| 仙居县| 隆林| 错那县| 武鸣县| 绵竹市| 弥勒县| 古丈县| 木兰县| 泸水县| 岱山县| 宝兴县| 海伦市| 安塞县| 阜宁县| 宕昌县| 卓资县| 江安县| 杭锦旗| 佛山市| 个旧市| 西畴县| 内丘县| 健康| 繁峙县| 三河市| 彩票| 太白县| 南召县| 乐业县| 镇原县| 瓮安县| 新和县| 墨脱县| 嵊泗县| 东乡族自治县| 九龙县|