博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
asp.net常用的引用命名空间的含义
阅读量:5138 次
发布时间:2019-06-13

本文共 900 字,大约阅读时间需要 3 分钟。

using System;//引入核心命名空间,是一切类的基础
using System.Collections.Generic;//引入集合类命名空间,能够使用泛型类等集合类
using System.ComponentModel;//引入ComponentModel命名空间
using System.Data;//引入数据操作命名空间,能够使用如DataSet数据集类
using System.Drawing;//引入绘图命名空间,能够使用如Color的类---image
using System.Text;//引入文本操作命名空间,能够使用如StringBuilder、字符操作等类
using System.Windows.Forms; //引入窗体命名空间,支持窗体相关的类
using System.Text; //文本操作
using Microsoft.Win32; //对注册表操作
using System.Collections; //使用Arraylist
using System.Security.Cryptography;//加密解密
using System.IO;    //文件操作
using System.Runtime.InteropServices;//调用DLL DllImport
using System.Management;  //获取硬件信息
using System.Net;       //获取IP地址是用到
using System.Net.NetworkInformation;    //ping 用到
using System.Text.RegularExpressions;   //正则
using System.Data.SqlClient;//sql数据库操作
using Microsoft.VisualBasic;   //简体转繁体时用到
using System.Web;       //html UrlEncode

转载于:https://www.cnblogs.com/sntetwt/archive/2011/05/08/2040427.html

你可能感兴趣的文章
php session设置说明 ,PHP中session_unset与session_destroy的区别 (转)
查看>>
android键盘事件
查看>>
网络编程- 解决黏包现象方案二之struct模块(七)
查看>>
这是最好的时光 这是最坏的时光 v0.1.1.1
查看>>
(三)微信小程序之发送服务通知(模板消息)
查看>>
linux命令ll -d
查看>>
[转载]ios中摄像头/相册获取图片,压缩图片,上传服务器方法总结
查看>>
用面向对象的思想设计问题
查看>>
Git Stash用法
查看>>
变量指针作为模板参数
查看>>
QComboBox用法小列(转)
查看>>
Leetcode 19. Remove Nth Node From End of List(python)
查看>>
WPF x:static的使用
查看>>
iOS Aspect Fit,Aspect Fill,Scale To Fill
查看>>
安装xhprof和graphviz
查看>>
c# 操作XML
查看>>
使用 MVVMLight 绑定数据(转)
查看>>
OAuth2.0 原理流程及其单点登录和权限控制
查看>>
解决Idea创建maven-archetype-webapp项目无java目录的问题
查看>>
ABP 用swagger UI测试API报401无权限访问问题
查看>>