Browse Source

update FastConcat

tags/Rel1
sebas77 7 years ago
parent
commit
d17bcb6b36
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      Utilities/Print.cs

+ 1
- 1
Utilities/Print.cs View File

@@ -7,7 +7,7 @@ public static class FastConcatUtility
{
static readonly StringBuilder _stringBuilder = new StringBuilder(256);

public static string FastConcat(this string str1, string str2)
public static string FastConcat<T>(this string str1, T str2)
{
lock (_stringBuilder)
{


Loading…
Cancel
Save