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

Ask A Question

Stats

  • Questions 82k
  • Answers 82k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer DELETE FROM MyTable WHERE Id = (SELECT MIN(Id) FROM MyTable); May 11, 2026 at 4:44 pm
  • Editorial Team
    Editorial Team added an answer Need more information to explain that error. The following code… May 11, 2026 at 4:44 pm
  • Editorial Team
    Editorial Team added an answer Okay, I'm anaswering generally, because you said, "Is this really… May 11, 2026 at 4:44 pm

Related Questions

Given a file tree - a directory with directories in it etc, how would
Given the following: declare @a table ( pkid int, value int ) declare @b
I have a line that I draw in a window and I let the
Being new to test based development, this question has been bugging me. How much

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.