Heya guys,
I have a very small snippet that drives me crazy right now.
int arg1;
int expr1 = arg1 = 16;
That silly online translators giving me the following output
Dim arg1 As Integer
Dim expr1 As Integer = InlineAssignHelper(arg1, 16)
Great but what should i write in the "InlineAssignHelper" function? What should that function return?