I know its a sin to use strings, lets skip that part...
Which of these is faster and uses less memory?
String.Format(" SomeValue='{0}' ", m_Value);
or
String.Concat(" SomeValue='", m_Value, "'");
- ramadu
Which of these is faster and uses less memory?
String.Format(" SomeValue='{0}' ", m_Value);
or
String.Concat(" SomeValue='", m_Value, "'");
- ramadu
Comment