I want use a string for my Exception message:
$"Your file size cannot exceeded from {AppSetting.MaxFileSize}"
But I want to put this in a ResourceFile:
"ExceededFileSizeException": $"Your file size cannot exceeded from {AppSetting.MaxFileSize}"
What is the best way to make this string and read it from code?