C#
白羊大树
一个长得比较黑的大白羊。
展开
-
【ASP.NET】获取resource文件中的数据
下面的代码是在网络上找来的,学习记录private List<KeyValuePair<string, string>> GetAllResources(string fileName){ List<KeyValuePair<string, string>> ListForReturn = new List<KeyValuePair<string, string>>(); ResXResourceReader r.原创 2022-02-23 22:14:47 · 332 阅读 · 0 评论 -
C# EventHandler的简单使用
using System;namespace learn_event{ //自定义事件类保存事件信息 class TestEventArgs : EventArgs { public string Name { get; set; } public int Age { get; set; } } class TestClass { //声明一个事件(比喻:打井这个事件) public eve原创 2021-04-21 16:52:46 · 4004 阅读 · 0 评论 -
C# 获取枚举中的【Description】属性值
这是一个我个人的记录笔记,实际代码也是我从网上找的。public string GetEnumDescription(Enum enumValue){ string value = enumValue.ToString(); FieldInfo field = enumValue.GetType().GetField(value); object[] objs = field.GetCustomAttributes(typeof(DescriptionAttribute), false);转载 2021-01-05 10:50:50 · 5062 阅读 · 0 评论 -
C#控制台应用连接SQL Server
废话不多说,直接上代码查询数据using System;using System.Data;using System.Data.SqlClient;namespace MyDbTest{ class Program { static void Main(string[] args) { ...原创 2020-01-20 22:03:49 · 886 阅读 · 0 评论 -
创建ASP.NET MVC项目
以创建一个简单的大学网站为例借鉴网站打开Visual Studio并使用ASP.NET Web Application (.NET Framework)模板创建一个C#Web项目。将项目命名为ContosoUniversity,然后选择OK2. 在 New ASP.NET Web Application - ContosoUniversity中,选择 MVC,然后点击OK3. 设...原创 2019-11-04 18:02:07 · 519 阅读 · 0 评论