I had a question with the writeln statement. I am kind of new to C#

I was wondering if you could do something like this w/ the writeln statement

To displat 2 integers you must do something like

int i1,i2
Console.Writeln(i1 + "==" + i2)

However, is there a way to do something similiar to C
int i1, i2
Console.Writeln("%i==%i",i1,i2)


Thanks