Hello.
Is any way to convert int to string in coding part . When i debug my code :
public bool isHoliday( int mounth , int day )
{
......
string temp = Convert.ToString(day);
.....
}
there always appear message showing line where i convert int to string.
int to String
int to String
try
Code: Select all
string temp = day.ToString();