zoukankan      html  css  js  c++  java
  • asp.net常用的引用命名空间的含义

    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
  • 相关阅读:
    vb 退出窗口提示
    游戏开发 简介
    gridview 缓存 优化
    Android中Bitmap和Drawable
    解析网络 xml 流程
    vb 检测是否突然断网
    进度条
    网站广告
    android 五大布局
    VB 读写文件
  • 原文地址:https://www.cnblogs.com/sntetwt/p/2040427.html
Copyright © 2011-2022 走看看