Visual Studio Code – How to define a function based on the platform in MAUI?
In my .NET8 MAUI application, I have a few functions for every platform but most of the code is the same. I saw somewhere that I could do something like: #if iOS public async Task<string> Register(NSData rawToken) { var nativeToken…