Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Return two strings with a function in C# [duplicate]

Tags:

string

c#

return

I have a function where I want to return two values. Is this possible?

This is my code, but it doesn't seem to like that I want to return two values:

public string PlayerCards(string player1C1, string player1C2)
{
    generatedCard = randomCard.Next(1, 52);
    player1C1 = generatedCard.ToString();
    player1C1 = player1C1 + ".png";
    return player1C1, player1C2;
}
like image 512
Kevin Avatar asked May 12 '13 07:05

Kevin


People also ask

Can we return 2 values from a function in C?

In C or C++, we cannot return multiple values from a function directly. In this section, we will see how to use some trick to return more than one value from a function. We can return more than one values from a function by using the method called “call by address”, or “call by reference”.

Can a function return 2 things?

No, you can not have two returns in a function, the first return will exit the function you will need to create an object.

How do I store two values returned from a function?

Return multiple values using commas In Python, you can return multiple values by simply return them separated by commas. In Python, comma-separated values are considered tuples without parentheses, except where required by syntax.

Can a function return two arrays?

A function can not return multiple values, but similar results can be obtained by returning an array.


3 Answers

You can return tuple: Tuple<string, string>

Tuple<string, string> t = new Tuple<string, string>(player1C1,player1C2);

return t;
like image 163
fatihk Avatar answered Sep 20 '22 08:09

fatihk


Some options:

  • Use an out parameter:

    public string PlayerCards(out string x)
    

    Return one value, and set the out parameter (x in this case) to another value; the calling code will need to specify an argument with out as well, and after the call has completed, the caller will be able to see the value set in the method.

    (It's not clear why you're accepting parameters at all; you don't seem to really use them.)

  • Return a ValueTuple<string, string>, ideally using C# 7 tuples to provide element names

  • Return a Tuple<string, string>
  • Create a new type to store the two values together, assuming it's a meaningful combination. This is definitely a good choice if the values are related in a way which you'll use elsewhere. For example, instead of having a method returning one string for the suit of a card and one for the value, you'd create a PlayingCard type.
  • Refactor your code into two method calls, each of which return a single value

It's not at all clear what your code is trying to do - the name of the method isn't clear and you don't use the parameters. When you've clarified what the method is trying to achieve - to yourself as much as to us - the answer may well become more obvious.

I'd also encourage you to use local variables where appropriate - I suspect generatedCard should be a local variable instead of the (presumably) instance variable it currently is.

like image 32
Jon Skeet Avatar answered Sep 22 '22 08:09

Jon Skeet


I think that you can use string array...

Second way is to use a struct containing two string values or a class with two string member,,

Look at here:

    /// <summary>
    /// Using struct
    /// </summary>
    struct twoStringValue
    {
        public string s1, s2;
    }

    public twoStringValue PlayerCards(string player1C1, string player1C2)
    {
        twoStringValue tsv;
        generatedCard = randomCard.Next(1, 52);
        tsv.s1 = player1C1 = generatedCard.ToString();
        tsv.s1 = player1C1 = player1C1 + ".png";
        return tsv;
    }


    /// <summary>
    /// Using a class
    /// </summary>
    class TwoStringValue
    {
        public string str1;
        public string str2;
    }

    public TwoStringValue PlayerCards(string player1C1, string player1C2)
    {
        TwoStringValue tsv;
        generatedCard = randomCard.Next(1, 52);
        tsv.str1 = player1C1 = generatedCard.ToString();
        tsv.str1 = player1C1 = player1C1 + ".png";
        return tsv;
    }

Good Luck.

like image 41
Mohsen Bahman Avatar answered Sep 22 '22 08:09

Mohsen Bahman