mscorlib(4.0.0.0) API with additions
FileMode.cs
2 
3 namespace System.IO
4 {
7  [ComVisible(true)]
8  public enum FileMode
9  {
11  CreateNew = 1,
13  Create,
15  Open,
19  Truncate,
21  Append
22  }
23 }
Specifies that the operating system should open an existing file. The ability to open the file is dep...
FileMode
Specifies how the operating system should open a file.
Definition: FileMode.cs:8
Definition: __Canon.cs:3
Specifies that the operating system should create a new file. If the file already exists,...
Specifies that the operating system should open a file if it exists; otherwise, a new file should be ...
Opens the file if it exists and seeks to the end of the file, or creates a new file....
Specifies that the operating system should create a new file. This requires F:System....
Specifies that the operating system should open an existing file. When the file is opened,...
Specifies that the class can be serialized.