Visual Studio Code – How to get multiple values of same variable in the function class from local.settings.json file?
Language Stack: .NET 6 LTS IDE: Visual Studio 2022 Community local.settings.json: { "IsEncrypted": false, "Values": { "AzureWebJobsStorage": "UseDevelopmentStorage=true", "FUNCTIONS_WORKER_RUNTIME": "dotnet", "toAddress": [ { "mail1": "[email protected]", "mail2": "[email protected]", "mail3": "[email protected]" } ] } } Function Class: using System; using System.IO; using…