lokiys Moderator Регистрация 01.02.2012 Сообщения 4 812 Благодарностей 1 187 Баллы 113 26.10.2013 #1 There is not possible to spin something like that {-|--|---} Cheers
rostonix Известная личность Регистрация 23.12.2011 Сообщения 29 067 Благодарностей 5 715 Баллы 113 26.10.2013 #2 You can use switch for this case. Generate number 1-3 and depends on the number add to variable necessary data. Реакции: СТЕПАН
You can use switch for this case. Generate number 1-3 and depends on the number add to variable necessary data.
lokiys Moderator Регистрация 01.02.2012 Сообщения 4 812 Благодарностей 1 187 Баллы 113 26.10.2013 #3 rostonix сказал(а): You can use switch for this case. Generate number 1-3 and depends on the number add to variable necessary data. Нажмите, чтобы раскрыть... If we talking about workaround then there is ready made version of this. JavaScript: Random r = new Random( ); int dash = r.Next(1, 4); var dash1 = string.Concat(Enumerable.Repeat("-", dash)); return dash1; Cheers
rostonix сказал(а): You can use switch for this case. Generate number 1-3 and depends on the number add to variable necessary data. Нажмите, чтобы раскрыть... If we talking about workaround then there is ready made version of this. JavaScript: Random r = new Random( ); int dash = r.Next(1, 4); var dash1 = string.Concat(Enumerable.Repeat("-", dash)); return dash1; Cheers