handzlikchris / handzlikchris/FastScriptReload
[Error] An error is caused if the source code contains English characters
- Lenguaje dominante
- C#
- Estrellas
- 2.2k
- Forks
- 167
- Métricas de merge de PR
- Sin PR fusionados en 30 d
Descripción
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
Guía de contribución
No hay ninguna guía de contribución indexada para este repositorio
Línea de trabajo
Start with the SplitStringByComma entry point shown in the report and reproduce the issue using the Chinese comma character. Trace the FSR processing that changes the character to � while preserving the ASCII comma. Done means the Chinese character remains intact after processing and inputs without Chinese characters continue to work.
Escrito por el modelo de indexación a partir del texto del issue.
Evaluación
- Stack tecnológico
- csharp, unity
- Área
- devtools, game-dev
- Tipo de issue
- Error
- Dificultad
- 3/5
- Tiempo estimado
- 1-2 días
- Estado de actividad
- Estancado
- Claridad
- Bastante claro
- Aptitud para principiantes
- 35/100