vote up 0 vote down star

I'm fairly new to C#, and trying to figure out string insertions (i.e. "some {0} string", toInsert), and ran across a problem I wasn't expecting...

In the case where you have two constructors:

public MyClass(String arg1) { ... }

public MyClass(String arg1, String arg2) { ... }

Is it possible for me to use the first constructor with a string insertion?

...
toInsert = "def"
myClass = new MyClass("abc{0}ghi", toInsert)
...

Or will C# interpret this as the second constructor and pass a literal "abc{0}ghi" as the first argument?

flag

3 Answers

vote up 9 vote down check

Yes, this will be interpreted as just a second parameter.

The behavior you describe is called string formatting and everything that accepts strings in this style uses string.Format() in the background. See the documentation of that method for details.

To get the desired behavior, use this code:

myClass = new MyClass(string.Format("abc{0}ghi", toInsert));
link|flag
Actually, String.Format() calls out to StringBuilder.AppendFormat() – Joel Coehoorn May 18 at 13:52
So, should I always wrap my formatting in string.Format() to avoid bugs down the road where classes with one constructor get a new one? – tgray May 18 at 14:03
No, that is an unjustified conclusion. new MyClass(A) calls the ctor that accepts one param, and new MyClass(A,B) calls the ctor that accepts 2 params, regardless what you substitute for A and B. You have substituted "abc{0}ghi" for A. This does not change the fact that you have passed 2 params. – Cheeso May 18 at 14:47
@Cheeso, it sounds like you are confirming my supposition that, when using string formatting in an argument, the formatting should always be inside string.Format(), but my reason for doing so was wrong. – tgray May 18 at 15:36
vote up 4 vote down

Just do:

public MyClass(string format, params object[] args)
{
  this.FormattedValue = string.Format(format, args);
}
link|flag
vote up 2 vote down

Or will C# interpret this as the second constructor and pass a literal "abc{0}ghi" as the first argument?

This is the right answer. I think If you use String.Format("abc{0}ghi", toInsert) then it will take the first constructor

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.