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

#if NETFX
using System;
namespace IWshRuntimeLibrary
{
// Token: 0x02000010 RID: 16
internal enum IOMode
{
// Token: 0x0400000E RID: 14
ForReading = 1,
// Token: 0x0400000F RID: 15
ForWriting,
// Token: 0x04000010 RID: 16
ForAppending = 8
}
}
#endif