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 6900413
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T07:32:35+00:00 2026-05-27T07:32:35+00:00

If I have an assembly which contains a function that manipulates a string and

  • 0

If I have an assembly which contains a function that manipulates a string and then returns that string, and I then have a separate C# application which calls the function from the assembly…

How can I pass the manipulated string from the assembly into the application?

For example, If I have this assembly…

using System;

namespace test
{

    public class Class1
    {
        string inputString = "hello";
        string outputString;

        public static string Convert(ref inputString, ref outputString)
        {
            outputString = inputString.ToUpper();
            return outputString;
        }
    }
}

And I have this application which calls the Convert function within the assembly…

using System;
using test;

public class Class2
{
    public static void Main()
    {
        Class1.Convert();
    }
}

How can I get the returned outputString into the Class2 application?
I can’t reference it in the Main() function so how can I pass it in?

  • 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-05-27T07:32:36+00:00Added an answer on May 27, 2026 at 7:32 am

    It looks like you want to pass in a valid and then return another value? Then get rid of the of properties on your Class1, they are not necessary. Just make the input string the parameter of the Convert function, and then return the output.

    using System;
    
    namespace test
    {
    
        public class Class1
        {
            public static string Convert(string inputString)
            {
                string outputString = inputString.ToUpper();
                return outputString;
            }
        }
    }
    

    and:

    using System;
    using test;
    
    public class Class2
    {
        public static void Main()
        {
            string thisIsMyReturnedString = Class1.Convert("whatever the input value should be");
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an assembly which contains several UserControl objects that I want to be
I have a windows service that references an assembly which contains the following class.
I have an assembly which should not be used by any application other than
I have a helper assembly which includes a function to identify object types: namespace
I have a set of assembly function which I want to use in C
I have F# class library assembly that contains two functions: let add a b
I have the following assembly program which displays the letter 'z' and then exits:
I have a .resx file which contains some string resources for my project. At
I have an assembly which is loaded using Assembly.LoadFrom. This assembly contains several static
I'm working with nHibernate. I have make an Assembly (ex : DAL.dll), which contains

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.