Guest User

Untitled

a guest
Jul 18th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. using System;
  2. using System.ComponentModel;
  3. using System.Runtime.InteropServices;
  4.  
  5. namespace ClassLibrary1 {
  6. [ComVisible(true), InterfaceType(ComInterfaceType.InterfaceIsDual)]
  7. public interface IFoo {
  8. int property {
  9. [Description("prop")]
  10. get;
  11. [Description("prop")]
  12. set;
  13. }
  14. }
  15. }
Add Comment
Please, Sign In to add comment