You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
272 B

  1. #if NETFX
  2. using System;
  3. namespace IWshRuntimeLibrary
  4. {
  5. // Token: 0x02000010 RID: 16
  6. internal enum IOMode
  7. {
  8. // Token: 0x0400000E RID: 14
  9. ForReading = 1,
  10. // Token: 0x0400000F RID: 15
  11. ForWriting,
  12. // Token: 0x04000010 RID: 16
  13. ForAppending = 8
  14. }
  15. }
  16. #endif