Closed VBAndCs closed 4 years ago
You can control Options that are generated in output file and that are used for testing under Options/Advanced Options....I have changed the code to add Me. in next version but not sure it will not break something else.
C#:
VB.NET:
the
Buffer_Renamed.AppendHtml(New String(buffer, index, count))
is wrong. Buffer is not buffer in C#. As I mentioned b4, changing param name leads to errors in EF and other tech. so the only solution is to addMe.
b4 any variable has the same name as a param but starting with Uppercase letter.Me.Buffer_Renamed.AppendHtml(New String(buffer, index, count))
is the equivalent VB for:Buffer.AppendHtml(new string(buffer, index, count));
And by the way, turn
Option Infer On
, as it is the default for C#, and turning it of causes errors in VB.