In general the entry point is where the application starts when it runs,
such as a static "Main" method.
[STAThread]
static void Main()
{
... code to run application ...
}
For details, see:
http://msdn.microsoft.com/library/de...bjectfield.asp
Michael Lang, MCSD
"Erik Jensen" <(E-Mail Removed)> wrote in message
news:034e01c3578a$479275f0$(E-Mail Removed)...
> I am trying to call a .NET c# class library with 2 methods
> in it from InstallShield. I made a method to do a file
> creation.
>
> The installshield has taken 'void DLL_NAME::METHOD_NAME()'
> as its call to the method. However it says my DLL has no
> entry point.
>
> My dll is arranged like this:
>
> Namespace{
>
> Class{
>
> Method1
> Method2
>
> } //end class
>
> }//end namespace
>
> Can I add an entry point that that program wants. It
> mentions exported methods, however, I see that word in
> VC++ projects not c# projects.
>
> Thanks