I'm working on a project, that requires I call an external dll. I used VS 2012 to create the DLL (which works fine as an EXE file). But, when I try to run the dll with the code below, I get an error say "..Missing Entry Point..". I've looked, and have not found an example which clearly explains what the entry point need to look like, and how you do it in C#, not C++. Appreciate the help. Thanks.
System.Diagnostics.Process.Start("rundll32.exe", "Mydll.dll,MyMethod" + localFile);