I'm creating an app that I need to connect to an Azure Storage Account which requires you to implement a connection string in the app settings consisting of the Account Name and the Account Key. The connection string is then parsed through the CloudStorageAccount class.
I figured I could get the string by using the GetValue Method of the AppSettingsReader Class as explained here, but I can't use the System.Configuration Namespace with Xamarin.Android because it targets Monodroid.
How else can I implement the connection string so I can parse it through the CloudStorageAccount?