YS
Size: a a a
YS
p
p
p
SP
AZ
if (result == CodeInsertionResult.New)
- как-то не очень звучит по-моемуp
SP
p
CD
if (result == CodeInsertionResult.New)
- как-то не очень звучит по-моемуp
SP
Т8
AZ
if (result == CodeInsertionResult.InsertedNew)
звучит лучше. Хотя и есть дублирование, согласенp
AZ
CD
if (result == CodeInsertionResult.InsertedNew)
звучит лучше. Хотя и есть дублирование, согласенenum class result_enum
{
no_error,
error_ok,
//...
};
AZ
enum class result_enum
{
no_error,
error_ok,
//...
};
CD
Т8
enum class result_enum
{
no_error,
error_ok,
//...
};