I'm new to vb.net need help to resolve this:
Following is coming from database
Param1: 100
Param2: 184
Comparion Operator: >
In vb.net - i need to generate code like this:
If 100>184 Then
'Do something
Else
'Do something
End
I'm really struggling how to generate the above code in vb.net as values are coming from database.
I haven't tried anything, im struggling to write code for this.