Maybe a newbies question... can I have the stack a...
# getting-started
r
Maybe a newbies question... can I have the stack as suffix in a resourcegroup name? Like resourcegroup-dev instead of a random suffix? I am using c#
Already found it.
Copy code
var resourceGroup = new ResourceGroup($"SeeEverythingSharp-{Deployment.Instance.StackName}");
s
Right - you can template the strings just like you can in regular C# code.