Horje
c# append to int variable Code Example
c# append to int variable
int a = 1039; 
int b = 7056; 
int newNumber = int.Parse(a.ToString() + b.ToString());
//Or
int newNumber = Convert.ToInt32(string.Format("{0}{1}", a, b));




Csharp

Related
c# datagridview hide column Code Example c# datagridview hide column Code Example
playerInputManager.JoinPlayer(....) Code Example playerInputManager.JoinPlayer(....) Code Example
c# add two int variables Code Example c# add two int variables Code Example
c sharp check if key in dictionary Code Example c sharp check if key in dictionary Code Example
materials pink in unity Code Example materials pink in unity Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
13