This is a discussion on How can I create the com visible assembly ? within the C# Programming forums, part of the Software Development category; How can I create the com visible assembly ?...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| The ComVisibleAttribute attribute determines how COM clients access managed code.COM visibility can be set for an entire assembly and then overridden for individual types and type members. If the attribute is not present, the contents of the assembly are visible to COM clients. If you want the assembly to be visible to COM clients, apply the attribute and set its value to true. Add the attribute to the assembly. If you do not want the assembly to be visible to COM clients, apply the attribute and set its value to false. Example -------- using System; [assembly: System.Runtime.InteropServices.ComVisible(true)] namespace DesignLibrary {} |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| What is meant by Satellite assembly in Asp.Net ? | mobilegeek | ASP and ASP.NET Programming | 3 | 08-08-2007 02:18 AM |
| What is the Purpose of strong name for assembly ( for all language) | kingmaker | C# Programming | 1 | 07-26-2007 02:33 PM |
| ReflectionTypeLoadException occured while calling Assembly.GetTypes() | theone | Mobile Software Development | 1 | 07-25-2007 02:56 AM |
| Whats an assembly? | prasath | ASP and ASP.NET Programming | 1 | 07-19-2007 02:20 AM |
| Is someone using your assembly? (SecUtil.exe .Net FrameWork Tools Series) | Gopisoft | VB.NET Programming | 0 | 02-25-2007 09:31 PM |