Getting MacAddress throwing error

Has something changed with getting the computer’s MacAddress? I’ve been using the following, but now am getting an error saying “This application has encountered a problem”

MACaddress2 = System.GetNetworkInterface.MACAddress

When attempting to see what the System options are after “System.”, I see only DebugLog, Microseconds, and Ticks

Is there a new method of getting the MacAddress?

Autocomplete is broken for System, but everything works just fine.

Thanks Michel. But is something missing with the above code? As is, the app won’t launch and just shows the error during compiling

You have to specify which network interface you want to GetNetworkInterface; the first interface is 0:

MACaddress2 = System.GetNetworkInterface(0).MACAddress

Perfect thanks Andrew!