The title doesn’t really explain what i want but basically.
I have my application that people enter a bunch of vertex points in a polygon. Then it gives them a list of Vertex’s that fit inside the polygon. What i want to do is have a executable exported from the application so they run the exported executable and it will give them the Vertex’s.
You can use System.Runtime.Emit and create an executable at runtime.
Some Sample available there: http://www.dotnetspider.com/resources/4122-How-create-exe-file-using-console-app-C.aspx
And if you need data compiled into the same executable you can define types and Fields for storing the data directly into the defined Type for instance