-
Notifications
You must be signed in to change notification settings - Fork 34
Closed
Description
Using UnityScript2CSharp_1.0.7002.42237
Original JS Code
function StringToBoolean(string : String) : boolean {
return (string == '1');
}Converted C# Code
public virtual bool StringToBoolean(string string)
{
return string == "1";
}Suggested Converted C# Code
public virtual bool StringToBoolean(string @string)
{
return @string == "1";
}Where the variable name conflicts with the C# primitive type
Metadata
Metadata
Assignees
Labels
No labels