im storing values in the registry by number, and i can loop through off the entries calling them by number. but for the loop since its an integer, how do i convert it to a string?

Code:
for(int i=1;i<=num;i++){
		tmp = i;
		registry.Read(tmp,title);
		lst_favs.AddString(title);
	}
thanks