Hello Everyone,
the SalToDotNetConverter this is our first open source project and I just want to give you first information about it.
There are some ways to convert or port SAL code or SAL applications to C#, but you have to pay for that. Additionally the generated source is far away from being good sourcecode (in our opinion). For example, the line
SAL: Set l_sTextNumber = SalNumberToString( l_nNumber, 0)
is ported to
C#: l_sTextNumber = Sal.NumberToString( l_nNumber, 0);
So we want to do it better and convert SAL to native C# like this
C#: l_sTextNumber = l_nNumber.ToString();
The first milestone is to convert simple Functional Classes with their Parameters and Variables. Then step by step we move forward to more complex things.