摘要:
Func是一个委托,委托里面可以存方法,Func<string,string>或Func<string,string,int,string>等 前几个是输入参数,最后一个是返回参数 以Func<int,bool>为例: private bool IsNumberLessThen5(int numbe 阅读全文
posted @ 2021-04-14 23:38 火冰·瓶 阅读(1844) 评论(0) 推荐(0) 编辑
摘要:
Func是一个委托,委托里面可以存方法,Func<string,string>或Func<string,string,int,string>等 前几个是输入参数,最后一个是返回参数 以Func<int,bool>为例: private bool IsNumberLessThen5(int numbe 阅读全文
posted @ 2021-04-14 23:38 火冰·瓶 阅读(1844) 评论(0) 推荐(0) 编辑
摘要:
public static class LinqExtensions { private static PropertyInfo GetPropertyInfo(Type objType, string name) { var properties = objType.GetProperties() 阅读全文
posted @ 2021-04-14 20:22 火冰·瓶 阅读(254) 评论(0) 推荐(0) 编辑
摘要:
详见:https://developer.mozilla.org/zh-CN/docs/Web/HTML/Element/Input/file#attr-multiple 使用 type="file" 的 <input> 元素使得用户可以选择一个或多个元素以提交表单的方式上传到服务器上,或者通过 J 阅读全文
posted @ 2021-04-14 00:24 火冰·瓶 阅读(3926) 评论(0) 推荐(0) 编辑 |
||