Invoke Code - VB.Net / C # - Condition Evaluation

@Gautham_Pattabiraman

Here from your screentshot

For example if you want to use a if condition use it directly

if (20 > 18) 
{
  Console.WriteLine("20 is greater than 18");
}

Cheers