Is there an equivalent in .net Cobol to C#'s string interpolation? For example:
int cats = 100; int dogs = 2;
string animals = $"cats = {cats} and dogs = {dogs}";
I know that I can use string::format but was wondering if string interpolation exists.
Is there an equivalent in .net Cobol to C#'s string interpolation? For example:
int cats = 100; int dogs = 2;
string animals = $"cats = {cats} and dogs = {dogs}";
I know that I can use string::format but was wondering if string interpolation exists.