Articles in this section
Category / Section

Why we get an exception that is Entry point was not found when a data table is bind to grid control.

1 min read

While binding GridControl with datatable we get exception “Entry point is not found”. This issue will occur when your application does not have the correct entry point. The common language runtime is unable to locate an application entry point (typically a Main method) in an executable assembly. The application entry point must be a global or static method that has either no parameters or a string array as its only parameter. The entry point can return void, or it can return an Int32 or UInt32 exit code. An application assembly cannot define more than one entry point.

Please refer to the following MSDN link for more details about this kind of exception (and how to overcome it).


Link
https://msdn.microsoft.com/en-us/library/system.entrypointnotfoundexception(v=vs.110).aspx 

 

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied