| 123456789101112131415161718 |
- //
- // System.ComponentModel.BindableSupport.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- namespace System.ComponentModel
- {
- [Serializable]
- public enum BindableSupport {
- Default,
- No,
- Yes
- }
- }
|