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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T14:28:12+00:00 2026-05-31T14:28:12+00:00

In C#, when defining a public method like: public int myMethod(String someString) { //code

  • 0

In C#, when defining a public method like:

public int myMethod(String someString)
{  
   //code  
}

What does the int indicate apart from the type integer? What confuses me is that the method is using a String as arguments in this case.

  • 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-31T14:28:14+00:00Added an answer on May 31, 2026 at 2:28 pm

    It is the return type of the method. In this case a 32-bit signed integer with a range of

    -2,147,483,648 .. +2,147,483,647
    

    It corresponds to the .NET type System.Int32. int is just a handy C# alias for it.

    You would return a value like this

    public int Square(int i)
    {
        return i * i;
    }
    

    And you could call it like this

    int sqr = Square(7); // Returns 49
    // Or
    double d = Math.Sin(Square(3));
    

    If you do not need the return value, you can safely ignore it.

    int i;
    Int32.TryParse("123", out i); // We ignore the `bool` return value here.
    

    If you have no return value you would use the keyword void in place of the type. void is not a real type.

    public void PrintSquare(int i)
    {
        Console.WriteLine(i * i);
    }
    

    And you would call it like this

    PrintSquare(7);
    

    The method in your example accepts a string as input parameter and returns an int as result. A practical example would be a method that counts the number of vowels in a string.

    public int NumberOfVowels(string s)
    {
        const string vowels = "aeiouAEIOU";
    
        int n = 0;
        for (int i = 0; i < s.Length; i++) {
            if (vowels.Contains(s[i])) {
                n++;
            }
        }
        return n;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an interface defining a method like this : public List<IA> myMethod(); with
I have a method like this: public void foo(String str){ do.something(); do.anotherthing(); do.somethingelse(); if(str.compareTo(choiceA)==0){
When defining a method on a class in Python, it looks something like this:
I am defining a static factory method with: @XmlType(factoryClass=DummyFactory.class, factoryMethod=createNew) public abstract MyClass() {
In my class I have a static method public static void DoWork(int param) ...
When defining parameter type that is e.g. in System.Data you have no intellisense and
When defining a custom operator from the limited set of single-character operators that can
I am having trouble defining the content-type of an element (phonenumber) whilst at the
I find myself defining classes like: struct AngleSize { explicit AngleSize(double radians) : size(radians)
I'm looking for method to create Vector and push some values without defining variable

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.