Why is a string reference different to a string?
At least I think thats what my question is. Basically if I run my function like:
GSFU_Demo_Utils.RetrievePassword("simon",true);
it works fine.
but if I run my function like:
string enteredUsername="simon";
GSFU_Demo_Utils.RetrievePassword(enteredUsername,true);
the function fails.
How on earth can this be?
I like to know this too. I would say this is not possible if you haven't said it is.
Answer by DiGiaCom-Tech · Nov 25, 2016 at 08:25 PM
I would start by looking into the code behind this function and then if nothing becomes apparent then try contacting the developers of GSFU.
Your answer
Follow this Question
Related Questions
Problem with Contains 0 Answers
Unable to use Functions from another script [C#] READ THRU MANY Q&As but STILL not working 1 Answer
[Help] how do I reference/access another script in unity C# 2 Answers
The name `FindObjectOfType' does not exist in the current context 2 Answers
How to get instantiate object(clone) to get the reference of the original object with scripts? 0 Answers