I have a question regarding the best method of bringing over a legacy WCF service written in vb.net into a new Blazor server-side application.
When planning out how to do this, the obvious solution seemed to be to simply re-write it in C#. While that might be the case, I thought of something else -- would simply creating a VB class library that the Blazor project references work just as well? I'm just not sure which road I should take here.
For reference, the WCF service that we currently have is used to bring in forms that a user completes through Formstack and process them into our database. The service itself isn't too complicated, and at the end of the day I suppose re-writing it in C# wouldn't be the end of the world, but with my limited experience I wanted to make sure that I chose the most efficient method before devoting a lot of time to the project. Any advice would be greatly appreciated!