I’d like to basically turn a php website with database into a .net executable file. I’d like everything to be internal. Is this possible or will I have to rewrite the entire project into C#?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You have to (should) rewrite the project in C#.
Of course, it is technically possible to integrate everything you need into one executable .NET file, but this solution will make use of lots of unsupported stuff, temp files or PInvoke calls, which you do not want to have in a managed environment.