I created a web app in C# ASP.net Core. I originally used public static variables as global variables. This created a huge problem as users were overiding each others static variables and saving someone elses data. I switched to session variables so everyone had their own global variables.
I am now creating a counterpart mobile app to this web app in Xamarin.Forms. I need to create global variables in Xamarin.Forms. Will static variables in Xamarin.Forms have the same issue in Asp.net Core where the variables can be mismatched between users using the mobile phone app Xamarin.Forms?
I'm guess not because each phone will be holding their static variables as opposed to the web app where the server is spinning up the application for each user.
Thank you.
Trying to create individual user global variables in Xamarin.Forms.