CodePropertySetValueReferenceExpression.cs 402 B

123456789101112131415161718192021
  1. //
  2. // System.CodeDom CodePropertySetValueReferenceExpression Class implementation
  3. //
  4. // Author:
  5. // Daniel Stodden ([email protected])
  6. //
  7. // (C) 2002 Ximian, Inc.
  8. //
  9. using System.Runtime.InteropServices;
  10. namespace System.CodeDom
  11. {
  12. [Serializable]
  13. [ClassInterface(ClassInterfaceType.AutoDispatch)]
  14. [ComVisible(true)]
  15. public class CodePropertySetValueReferenceExpression
  16. : CodeExpression
  17. {
  18. }
  19. }