I have some delphi code which I need to migrate / port / re-write to .NET
The code uses TOleServer. Could you please let me know any .NET equivalent implementation of this particular class.
Is it available via unmanaged code?
thanks
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.
COM servers are available in .NET through COM Interop.
You didn’t mention how your Delphi code uses
TOleServer. If it implements its own COM server then you have the following options:If your Delphi code uses
TOleServerto reference an external COM server, you can simply do the same from .NET.