I know this is a very stupid and elementary question, but I really have no idea on other ways to accomplish this.
Now I know I can insert spaces within the text like my example below.
int num = some numerical value;
status.Text = "Successfully Deleted"+ " " + num + " " + "Files";
However, I'm wondering is there a neater way to do this. I always done it this way, but I'm wondering whether there's an easier/neater way to it. Thanks.