Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Concat string failure #355

Closed
Tommo-L opened this issue Sep 15, 2020 · 1 comment · Fixed by #356
Closed

Concat string failure #355

Tommo-L opened this issue Sep 15, 2020 · 1 comment · Fixed by #356
Assignees

Comments

@Tommo-L
Copy link
Contributor

Tommo-L commented Sep 15, 2020

public static string TestStringAdd2(string a, string b)
{
	return a +  "hello";  // Successed
}

public static string TestStringAdd3(string a, string b)
{
	return a + b + "hello";  // Failed
}
@shargon shargon self-assigned this Sep 15, 2020
@shargon
Copy link
Member

shargon commented Sep 15, 2020

image

The problem is that we have three arguments in Concat. I will fix it

@shargon shargon mentioned this issue Sep 15, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants