HandleInheritability.cs 86 B

12345678
  1. namespace System.IO
  2. {
  3. public enum HandleInheritability
  4. {
  5. None,
  6. Inheritable
  7. }
  8. }