I have two integers, ex. 15 and 6 and I want to get 156. What I do:
int i = 15;
int j = 6;
Convert.ToInt32(i.ToString() + j.ToString());
Any better way of doing this?
UPDATE: Thanks for all of your nice answers. I run a quick Stopwatch test to see what are the performance implications: This is a code tested on my machine:
static void Main()
{
const int LOOP = 10000000;
int a = 16;
int b = 5;
int result = 0;
Stopwatch sw = Stopwatch.StartNew();
for (int i = 0; i < LOOP; i++)
{
result = AppendIntegers3(a, b);
}
sw.Stop();
Console.WriteLine("{0}ms, LastResult({1})", sw.ElapsedMilliseconds,result);
}
And here's the timing:
My original attempt: ~3700ms
Guffa 1st answer: ~105ms
Guffa 2nd answer: ~110ms
Pent Ploompuu answer: ~990ms
shenhengbin answer: ~3830ms
dasblinkenlight answer: ~3800ms
Chris Gessler answer: ~105ms
Guffa provided a very nice and smart solution and Chris Gessler provided a very nice extension method for that solution.
