使用.net framework中常用类在2.0版中的新功能

 

郑佐 <?xml:namespace prefix = st1 ns = "urn:schemas-microsoft-com:office:smarttags" />2005-8-6

在上一篇《浏览.NET Framework 2.0 类型库中新增的常用功能》一文中我主要列了几个新增的常用主件,本文作为小结主要针对一些常用类的扩展来讲最近在使用C# 2.0 的时候发现的几个新特征,讲得不当之处请网友指正。

 

1Exception异常基类

2.0下,Exception基类增加了Data属性,原型如下,

public virtual IDictionary Data {get;}

可见其实现了IDictionary接口,用来存储异常的自定义信息,由此想到在ExceptionManagement block中通过继承增加NameValueCollection类成员来使BaseApplicationException具有该项功能,Exception新增Data属性的灵感来源于此?

 

2File增加解密加密功能

使用File的新增加密解密方法来保护文件。在windows2003系统窗口的文件夹选项菜单的查看选项卡中选中用彩色显示加密或压缩的NTFS文件复选框(在xp2000系统里应该也有相关的选项)就可以看到被加密的文件颜色会不一样。

具体方法定义如下,

public static void Encrypt(     string  path ); //加密

public static void Decrypt(    string  path );//解密

加密后,文件就会变成绿色,如果该文件没有授权给其他用户,那在其他用户登录时就无法访问该文件。点击加密文件属性可以得到加密的更多信息。

 

3DriveInfo

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也可以实现上述所有功能。

 

4System.Windows.Forms.Menu

2.0中增加了Tag属性,这样从它继承的MenuItem也就包含了该属性,就像TreeNode.Tag属性可以保存各种对象。

 

5Console类明显得到增强

Consle增加了很多功能,包括设置控制台窗体的外观大小和颜色,还可以设置、移动里面的光标,设置缓冲区,判断键盘的那些特定键是否开启等等。举个例子像Console.ReadKey ()以及它的重载方法将会很有用。

 

以上特征是我针对.net framework 2.0 Beta 2来写的,在正式版出来后也许会有些改动。

 
posted on 2005-08-06 20:31  秋枫 阅读( ...) 评论( ...) 编辑 收藏

转载于:https://www.cnblogs.com/zhzuo/archive/2005/08/06/209056.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值