handzlikchris / handzlikchris/FastScriptReload
[Error] An error is caused if the source code contains English characters
Aperta
bug
- Lingua principale
- C#
- Stelle
- 2.2k
- Fork
- 167
- Metriche di merge delle PR
- Nessuna PR unita negli ultimi 30g
Descrizione
Included in the original code
public static string[] SplitStringByComma(string input)
{
string[] splitStrings = input.Split(new char[] { ',', ',' });
return splitStrings;
}
After FSR processing
public static string[] SplitStringByComma(string input)
{
string[] splitStrings = input.Split(new char[] { '��', ',' });
return splitStrings;
}
No problem if don't use Chinese characters
Guida per i contributori
Nessuna guida per i contributori indicizzata per questo repository
Valutazione
Questa issue non è ancora stata valutata.