fix(core): Converts vendor sell packets (#375)
- [X] Converts vendor sell packets Bumps release version
This commit is contained in:
parent
540a879d63
commit
2a2af424ad
7 changed files with 91 additions and 46 deletions
|
|
@ -23,7 +23,8 @@ namespace Server
|
|||
public static class StringHelpers
|
||||
{
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
public static string DefaultIfNullOrEmpty(this string value, string def) => value?.Trim().Length > 0 ? value : def;
|
||||
public static string DefaultIfNullOrEmpty(this string value, string def) =>
|
||||
string.IsNullOrWhiteSpace(value) ? def : value;
|
||||
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
public static void Remove(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue