multiple string variables c# code example
Example: intialize multiple variavles in c#
int i = 5, y = 10, x = 100;
//once the variables are intialized if you wanna assign the
// same amount to multiple variables
i = y = x = 100;
int i = 5, y = 10, x = 100;
//once the variables are intialized if you wanna assign the
// same amount to multiple variables
i = y = x = 100;