I just noticed the string concatenation operator ("&") is being used to build strings.

Code:
"A" & r
Can be changed to:

Code:
$"A{r}"
This is done using string interpolation. This goes for just about any other use of the concatenation operator (EDIT: or ("+")) as well.