Is there any way to convert C++ program into ASP.NET?
Is there any way to convert C++开发者_运维知识库 program into ASP.NET?
No there is not.
You have some options though:
- You can create a managed C++ / CLI DLL from your C++ code.
- You can create a C++ Win32 DLL and use p/invoke to import the DLL functions into your ASP.NET page.
- Re-write your code in C# or another .Net language.
No this is not at all possible. It's like converting an apple to a television.
精彩评论