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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T08:24:32+00:00 2026-05-15T08:24:32+00:00

If I have two byte s a and b , how come: byte c

  • 0

If I have two bytes a and b, how come:

byte c = a & b;

produces a compiler error about casting byte to int? It does this even if I put an explicit cast in front of a and b.

Also, I know about this question, but I don’t really know how it applies here. This seems like it’s a question of the return type of operator &(byte operand, byte operand2), which the compiler should be able to sort out just like any other operator.

  • 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-15T08:24:33+00:00Added an answer on May 15, 2026 at 8:24 am

    Why do C#’s bitwise operators always return int regardless of the format of their inputs?

    I disagree with always. This works and the result of a & b is of type long:

    long a = 0xffffffffffff;
    long b = 0xffffffffffff;
    long x = a & b;
    

    The return type is not int if one or both of the arguments are long, ulong or uint.


    Why do C#’s bitwise operators return int if their inputs are bytes?

    The result of byte & byte is an int because there is no & operator defined on byte. (Source)

    An & operator exists for int and there is also an implicit cast from byte to int so when you write byte1 & byte2 this is effectively the same as writing ((int)byte1) & ((int)byte2) and the result of this is an int.

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

Sidebar

Related Questions

I have two threads, one updating an int and one reading it. This is
Imagine I have two byte[] arrays, b1 and b2, and they have the bytes
I have two tables like this FLUX_ISU_EQU ID NUMBER(38,0) EQU_CODE VARCHAR2(10 BYTE) DATE_DERNIERE_MODIF DATE
I have two byte arrays in C# using .NET 3.0. What is the most
If I have two byte[] arrays, is there a built-in function to compare them
I have two identical byte arrays in the following segment of code: /// <summary>
As we all know a byte range is 0 to 255 i have two
I have a byte array that contains 6 bytes last 2 represents the port
I have this problem: I have a collection of small files that are about
let i have got two byte variable: byte a= 255; byte b= 121; byte

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.