// // System.Runtime.InteropServices.ClassInterfaceType.cs // // Author: // Nick Drochak (ndrochak@gol.com) // // (C) 2002 Nick Drochak // namespace System.Runtime.InteropServices { [Serializable] public enum ClassInterfaceType { None = 0, AutoDispatch = 1, AutoDual = 2 } // ClassInterfaceType } // System.Runtime.InteropServices