Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8096939
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T21:36:02+00:00 2026-06-05T21:36:02+00:00

I have the following method: public string Phase(string phase) { return Phase 1; }

  • 0

I have the following method:

public string Phase(string phase)
{
    return "Phase 1";
}

The thing is I need it to output 2 strings in 2 different labels:

“Phase 1”

“Phase 2”

Is there a way for me to do this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T21:36:03+00:00Added an answer on June 5, 2026 at 9:36 pm

    You have a few options to return multiple values.

    For example, you could return an IEnumerable<string> (or some other collection). You could also return a Tuple<string,string>.

    public IEnumerable<string> Phase()
    {
        yield return "Phase 1";
        yield return "Phase 2";
    }
    

    Or

    public Tuple<string,string> Phase()
    {
        return Tuple.Create("Phase 1", "Phase 2");
    }
    

    That being said, it might be simpler to use two separate methods (or properties) to return each string, instead of trying to force it into a single method call.

    Another alternative would be to pass in an argument which allowed the method to choose which label to return:

    public string Phase(int phase)
    {
        switch(phase)
        {
            default:
                return "Phase 1";
            case 2:
                return "Phase 2";
        }
    
        // Or just
        // return "Phase " + phase.ToString();
    
    }
    

    Edit:

    Given your comments, I would recommend a property that just returned an array:

    public string[] Phases
    {
        get { return new[] { "Phase 1", "Phase 2" }; }
    }
    

    You could then use this as:

    var phases = this.month1.Phases;
    this.lblPhase.Text = phases[0];
    this.lblPhase2.Text = phases[1];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a following method: public IQueryable<Profile> FindAllProfiles(string CountryFrom, string CountryLoc) { return db.Profiles.Where(p
I have the following method: public IQueryable<Profile> FindAllProfiles(string CountryFrom, string CountryLoc) { return db.Profiles.Where(p
I have the following method: [HttpPost] [AjaxOnly] public JsonResult ValidateInput(string text) { return new
I have the following method: public IEnumerable<Foo> GetFoo(int x, string y) { return from
I have the following method: public void PutFile(string ID, Stream content) { try {
I have the following method : public List<string> someMethod() { // populate list of
I have the following method public static void SerializeToXMLFile(Object obj,Type type, string fileName) {
I have the following method: public static T ExecuteScalar<T>( string query, SqlConnection connection, params
I have the following method: public object[] GetEventsByUser(DateTime start, DateTime end, string fullUrl) The
On my front end, I have following functions: method to encrypt: public static string

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.