handzlikchris / handzlikchris/FastScriptReload

[Error] An error is caused if the source code contains English characters

Ouverte
#103 1 commentaire 0 réactions 0 personnes assignées Voir sur GitHub
bug
Langage dominant
C#
Étoiles
2.2k
Forks
167
Métriques de merge des PR
Aucune PR mergée en 30 j

Description

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

Guide de contribution

Aucun guide de contribution indexé pour ce dépôt

Piste de recherche

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.

Rédigé par le modèle d'indexation à partir du texte de l'issue.

Évaluation

Stack technique
csharp, unity
Domaine
devtools, game-dev
Type d'issue
Bug
Difficulté
3/5
Temps estimé
1-2 jours
Activité
À l'abandon
Clarté
Plutôt claire
Accessibilité débutants
35/100

Recevez les nouvelles issues par e-mail

Un résumé court des issues GitHub adaptées aux débutants.