ASP.NET C# 中最常用的扩展和辅助函数
我是一名 ASP.NET C# Web 开发人员。
遵循的架构是 3 层
使用的层是
1.用户界面
2. BLL(有时与 BLL 的通信是使用 WebServices 完成的)
3.达尔
非常基本的东西。
我真正想要的是 BusinessLogics 中的 BLL.Common 类。
在这里,我想使用一些我们在几乎所有应用程序中使用的有用的扩展和辅助函数。
IsNullOrEmpty 扩展的一个示例。
开发人员最常使用哪些辅助函数?
如果能拿到一份清单就更好了。
问候,
纳文
I am an ASP.NET C# web developer.
The architecture followed is 3 layer
The layers used are
1. UI
2. BLL (Sometimes Communicating with BLL is done using WebServices)
3. DAL
Pretty basic stuff.
What I would really like to have is a BLL.Common class in the BusinessLogics.
Here I would like to use some useful extensions and helper functions that we use in almost all applications.
An example will IsNullOrEmpty extension.
Which are the helper functions most commonly used by developers?
It would be better if I could get a list.
Regards,
Naveen
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有太多了。让我们看看(我的可重用库之一中的一些(很少)):
通用实用程序:
Reflection Utils:
Logger Utils:
File Utils: //请注意,所有这些都必须安全地使用流(处理它们)
收集实用程序:
There are sooo many. Lets see (some (very few) from one of my reusable libs):
Generic Utils:
Reflection Utils:
Logger Utils:
File Utils: // Note all of these have to use streams safely (dispose them)
Colleciton Utils: