1、网络的MSDN可以看一下英文原文是怎样描述的
1.1有些是机器译的,有些是人工译的。单选按钮可以切换,光标移动到上面也可,如图1;
http://msdn.microsoft.com/zh-cn/library/system.io.file.aspx
图1
1.2字体太小除了可以调浏览器“放大镜”,还可以调“查看”-->“文字大小”
1.3MSDN有不同版本,比如下面vb 的声明有一个是有注释的。(我的)
http://msdn.microsoft.com/zh-cn/library/system.io.file.aspx#Y211
http://msdn.microsoft.com/en-us/library/system.io.file.aspx
http://msdn.microsoft.com/en-US/library/system.io.file(v=vs.80)
1.3看c# 的语法时,也可以看一下vb说不定有时会豁然开朗。
如:
File Class
Provides static methods for the creation, copying, deletion, moving, and opening of files, and aids in the creation of FileStream objects.
Namespace: System.IO
//C#
[ComVisibleAttribute(true)]
public static class File
'Declaration
<ComVisibleAttribute(True)> _
Public NotInheritable Class File
'Usage
The members of a static class are accessed directly without an instance of the class.
此时vb 的 NotInheritable 就明显地表达意思.(不过不代表 c# 的static 等同于 NotInheritable)