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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T23:17:45+00:00 2026-05-10T23:17:45+00:00

Given two shorts ( System.Int16 ) short left = short.MaxValue; short right = 1;

  • 0

Given two shorts (System.Int16)

short left = short.MaxValue; short right = 1; 

I want to get an OverflowException when adding them.

checked(left+right) 

does not work, because the result of left+right is an Int32.

checked((short)(left+right)) 

works as expected.

My problem is that, using Expression Trees, the ‘trick’ doesn’t work:

var a = Expression.Constant(left); var b = Expression.Constant(right); var sum = Expression.ConvertChecked(Expression.Add(a, b), typeof(short)); var l = Expression.Lambda(sum); var f = (Func<short>)l.Compile(); 

Calling f() does not throw an overflow exception but returns -32768. What’s wrong?

  • 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. 2026-05-10T23:17:46+00:00Added an answer on May 10, 2026 at 11:17 pm

    The problem is that the addition is being done as short + short (which presumably exists in IL even if it doesn’t exist in C#) – and then the conversion is performed separately. This is shown by this complete program – even without the conversion, the result is -32768:

    using System; using System.Linq.Expressions;  class Test {     static void Main(string[] args)     {         short left = short.MaxValue;         short right = 1;         var a = Expression.Constant(left);         var b = Expression.Constant(right);         var sum = Expression.Add(a, b);         var convert = Expression.ConvertChecked(sum, typeof(short));         var convertLambda = Expression.Lambda<Func<short>>(convert);         var convertFunc = convertLambda.Compile();         Console.WriteLine('Conversion: {0}', convertFunc());         var sumLambda = Expression.Lambda<Func<short>>(sum);         var sumFunc = sumLambda.Compile();         Console.WriteLine('Sum: {0}', sumFunc());     } } 

    If you make it do an int + int addition and then the conversion, it will throw an overflow exception:

    using System; using System.Linq.Expressions;  class Test {     static void Main(string[] args)     {         short left = short.MaxValue;         short right = 1;         var a = Expression.Constant((int) left);         var b = Expression.Constant((int) right);         var sum = Expression.Add(a, b);         var convert = Expression.ConvertChecked(sum, typeof(short));         var convertLambda = Expression.Lambda<Func<short>>(convert);         var convertFunc = convertLambda.Compile();         Console.WriteLine('Conversion: {0}', convertFunc());         var sumLambda = Expression.Lambda<Func<int>>(sum);         var sumFunc = sumLambda.Compile();         Console.WriteLine('Sum: {0}', sumFunc());     } } 

    I don’t know why AddChecked doesn’t work though… that looks like a bug 🙁 It’s possible that using the overload which allows the Method to specified would work, but I’m not sure…

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to categorize tweets within a given set of categories like {'sports', 'entertainment',
In short: I want to show a view or action sheet and only continue
I have a fairly process intensive method that takes a given collection, copies the
Given a list of words, return a list with the same words in order
It appears that if x is almost like short-hand for the longer if x
I was given this source code and asked to compile it: it fails with
I have two controls of interest on a page: a DropDownList and a Button
I have successfully created my first django project. I have two apps in my
Looking at scala's Predef object, which is automatically imported, I found the following gem
I have been trying to understand the use of primitives in Java and C#

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.