在上一篇《浏览.NET Framework 2.0 类型库中新增的常用功能》一文中我主要列了几个新增的常用主件,本文作为小结主要针对一些常用类的扩展来讲最近在使用C# 2.0 的时候发现的几个新特征,讲得不当之处请网友指正。
1.Exception异常基类
在2.0下,Exception基类增加了Data属性,原型如下,
public virtual IDictionary Data {get;}
可见其实现了IDictionary接口,用来存储异常的自定义信息,由此想到在ExceptionManagement block中通过继承增加NameValueCollection类成员来使BaseApplicationException具有该项功能,Exception新增Data属性的灵感来源于此?
2.File增加解密加密功能
使用File的新增加密解密方法来保护文件。在windows2003系统窗口的文件夹选项菜单的查看选项卡中选中用彩色显示加密或压缩的NTFS文件复选框(在xp或2000系统里应该也有相关的选项)就可以看到被加密的文件颜色会不一样。
具体方法定义如下,
public static void Encrypt( string path ); //加密
public static void Decrypt( string path );//解密
加密后,文件就会变成绿色,如果该文件没有授权给其他用户,那在其他用户登录时就无法访问该文件。点击加密文件属性可以得到加密的更多信息。
3.DriveInfo类
DriveInfo类提供系统驱动器的信息,是.net 2.0下新增的类,可以通过
DriveInfo[] drivers = DriveInfo.GetDrives();
得到驱动信息,如:
AvailableFreeSpace |
Indicates the amount of available free space on a drive.(配额考虑在内) |
DriveFormat |
Gets the name of the file system, such as NTFS or FAT32. |
DriveType |
Gets the drive type. |
IsReady |
Gets information on whether or not the drive is ready. |
Name |
Gets the name of the drive. |
RootDirectory |
Gets the root directory of the drive. |
TotalFreeSpace |
Gets the total amount of free space available on a drive. |
TotalSize |
Gets the total size of storage space on the drive. |
VolumeLabel |
Gets and sets the volume label of the drive. |
上面的VolumeLabel是可读写的,其他属性是只读的。在使用时一般需先判断IsReady属性是否为True,如果没有准备好,那访问其他属性就会发生异常,还有需要注意在编程时是否有权限访问。
DriveType枚举也是在.net 2.0下新增的,
Member name |
Description |
CDRom |
The drive is a CD ROM device. |
Fixed |
The drive is a fixed disk.(固定磁盘驱动器) |
Network |
The drive is a network drive.(网络驱动器) |
NoRootDirectory |
The drive does not have a root directory.(不含根目录的驱动器) |
Ram |
The drive is a RAM disk.(RAM闪存) |
Removable |
The drive is a removable storage device.(可移动存储设备) |
Unknown |
The type of drive is unknown.(未知设备类型) |
在1.1版中使用Directory.GetLogicalDrives();来得到驱动器。当然使用WMI也可以实现上述所有功能。
4.System.Windows.Forms.Menu类
在2.0中增加了Tag属性,这样从它继承的MenuItem也就包含了该属性,就像TreeNode.Tag属性可以保存各种对象。