
C#~Helper类
文章平均质量分 81
Nemo_XP
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
枚举Enum的helper类
using System; using System.Collections.Generic; using System.ComponentModel; using System.Reflection; namespace Lenovo.HIS.Common { public static class EnumDefinitionExt { #region Ge...原创 2020-01-14 11:30:51 · 393 阅读 · 0 评论 -
C# winform调用浏览器打开页面help类
public class BrowserHelper { /// <summary> /// 调用Chrome打开网页 /// </summary> /// <param name="url">打开网页的链接</param> public static void ...原创 2019-11-27 18:39:36 · 509 阅读 · 0 评论 -
EnumHelper
using System; using System.Collections.Generic; using System.Text; using System.Reflection; using System.ComponentModel; using System.Web; namespace Vector.Framework.Tool { /// <summary> ...原创 2018-04-25 09:27:25 · 295 阅读 · 0 评论 -
ORM框架之------Dapper,Net下无敌的ORM
一,介绍:Dapper是一款轻量级ORM工具。如果你在小的项目中,使用Entity Framework、NHibernate 来处理大数据访问及关系映射,未免有点杀鸡用牛刀。你又觉得ORM省时省力,这时Dapper 将是你不二的选择。 —ORM框架的核心思想是对象关系映射,ORM是将表与表之间的操作,映射成对象和对象之间的操作,就是通过操作实体类来达到操作表的目的。从数据库提取的数据会自动按你...转载 2018-11-02 14:10:31 · 880 阅读 · 0 评论 -
启动进程和杀进程helper类
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Security.Principal; using System.Text; namespace Common { public class P...原创 2019-05-09 11:15:04 · 987 阅读 · 0 评论