It should be easy, but cannot find anything to explain it.
Say I'm writing something on a .writeln console like:
console.writeln("Jim is a {0} ", xmlscript);
Let's say I wanted to convert the string `` Jim is .. '' to a resource string in a global .resx resource. This will:
jimstring jim is a {0}
and I would call it in code as
console.writeln(Resources.jimstring)
How to put a placement variable ( xmlscript ) (is that what they call?) In the resource string in console.writeln?
Thanks,
Bean
c # resources
scope_creep
source share