| 123456789101112131415161718192021 |
- //
- // System.CodeDom CodeBaseReferenceExpression Class implementation
- //
- // Author:
- // Miguel de Icaza ([email protected])
- //
- // (C) 2001 Ximian, Inc.
- //
- using System.Runtime.InteropServices;
- namespace System.CodeDom
- {
- [Serializable]
- [ClassInterface(ClassInterfaceType.AutoDispatch)]
- [ComVisible(true)]
- public class CodeBaseReferenceExpression
- : CodeExpression
- {
- }
- }
|