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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T09:38:20+00:00 2026-06-09T09:38:20+00:00

I have a code: static short Sum(short a, short b) { return a +

  • 0

I have a code:

static short Sum(short a, short b)
        {
            return a + b;
        }

And it does not compile, saynig cannot convert ‘int’ to ‘short’. I am maybe really tired today but I cannot see the issue!

  • 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-09T09:38:21+00:00Added an answer on June 9, 2026 at 9:38 am

    And it does not compile, saynig cannot convert ‘int’ to ‘short’. I am maybe really tired today but I cannot see the issue!

    It’s just the way the language is defined. The + operator on integer types is defined for:

    static uint op +(uint x, uint y)
    static int op +(int x, int y)
    static ulong op +(ulong x, ulong y)
    static long op +(long x, long y)
    

    Operands are promoted as required.

    Now as for the reasons why it’s defined that way – I don’t know, to be honest. I don’t buy the argument of “because it could overflow” – that would suggest that byte + byte should be defined to return short, and that int + int should return long, neither of which is true.

    I’ve heard somewhere that it could be performance related, but I wouldn’t like to say for sure. (Perhaps processors typically only provide integer operations on 32 and 64 bit integers?)

    Either way, it doesn’t really matter why it’s the case – it’s just the rules of the language.

    Note that the compound assignment operators have an implicit conversion back to the relevant type, so you can write:

    short x = 10;
    short y = 20;
    x += y;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some code static void Main(string[] args) { int j = 0; for
Today I came across this question: you have a code static int counter =
When i have a code block static void Main() { foreach (int i in
I have the following code snippet. public static void main(String[] args) { short a
I have the following piece of code: typedef int AliasB; typedef unsigned short AliasA;
I have this code public static Boolean freq[] = new Boolean[Global.iParameter[2]]; freq[Global.iParameter[2]] = false;
I have following code: public static void ProcessStep(Action action) { //do something here if
I have below code: class Program { static void Main(string[] args) { Task[] tasks
i have the following code: public static void Serialize() { List<string> dirs = FileHelper.GetFilesRecursive(fileDirectoryPath);
I have the following code: private static final Set<String> allowedParameters; static { Set<String> tmpSet

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.