make function inside the code

  • Thread starter Thread starter ahmeddc
  • Start date Start date
A

ahmeddc

Guest
hi

I browsed some codes. This function appeared to me [make], I do not know how to use it or use an alternative function for it in order to convert it to C Sharp.


Private lists As List(Of String) = Nothing

Dim type1 As String = lists(index + 1)
lists = New List(Of String)()
If type1 = "+" OrElse type1 = "-" Then

If lists.Count < 4 Then
Make(index, lists(index), lists(index + 2), type1)
Else
Dim type2 As String = lists(index + 3)

If type2 = "*" OrElse type2 = "/" Then
Make(index + 2, lists(index + 2), lists(index + 4), type2)
Else
Make(index, lists(index), lists(index + 2), type1)
End If
End If
Else
Make(index, lists(index), lists(index + 2), type1)
End If

Continue reading...
 
Back
Top