i have this line:
Dim strings_extreme = input.Split(","c).Distinct().OrderBy(Function(s) s)
i need to Dim it in one line, and set it a value on another line
how do i do that?
would it just be Dim strings_extreme() ??
and then strings_extreme = input.split.... ?
Even though VB.net allows you not to specify the type, it’s always more safe to specify it explicitly. Hence: