- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
/// <summary>
/// Проверка пароля *
/// </summary>
private string CheckPassword(String _password)
{
int kol = 0;
const int LEN = 32;
if (_password.Length == LEN)
return _password;
else
{
StringBuilder _pass = new StringBuilder(_password, LEN);
if (_password.Length > LEN)
{
kol = _password.Length - LEN;
return (_password.Substring(0, _password.Length - kol));
}
else
{
kol = LEN - _password.Length;
int i = 0;
while (i != kol)
{
_pass.Append(" ");
i++;
}
}
return _pass.ToString();
}
}
Vindicar 12.12.2012 11:27 # +1
Скобки вроде еще в начальной школе учат раскрывать...
Про осмысленность концепции молчу.
wvxvw 12.12.2012 13:33 # +3
roman-kashitsyn 12.12.2012 13:36 # +4
* Перепишите этот ужас
vladthesparrow 12.12.2012 13:58 # +3
Целая процедура вместо двух строчек
const int LEN = 32;
return string.Concat(password, new string(' ', LEN)).Substring(0, LEN);
scriptin 12.12.2012 21:00 # 0
Crazzy 13.12.2012 16:58 # 0
kol = LEN - _password.Length;
int i = 0;
while (i != kol)
{
_pass.Append(" ");
i++;
}
Elvenfighter 12.12.2012 21:46 # +1
Прародитель негодуэ.
Elvenfighter 12.12.2012 22:53 # +1
koodeer 14.12.2012 13:14 # 0
return password.PadRight(LEN);
guest 14.12.2012 14:10 # −1
absolut 13.12.2012 10:04 # +2
anonimb84a2f6fd141 14.12.2012 18:41 # −1