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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T00:22:55+00:00 2026-06-16T00:22:55+00:00

In C# (and presumably in VB.NET) there are three ways to pass constant-value arrays

  • 0

In C# (and presumably in VB.NET) there are three ways to pass constant-value arrays to a function, namely:

byte[] buffer = {0};
someFunction(buffer);

byte[] buffer = new byte[] {0};
someFunction(buffer);

someFunction(new byte[] {0});

Whereas simple typecasting an array declarator is invalid syntax:

someFunction((byte[]) {0});

Question:

What are the performance difference between the three working methods – in terms of CPU usage, memory allocation, and overall program size? Does the use of the new keyword have any effect on RAM usage or allocation, especially in cases where the declared variable falls out of scope immedately after the function call?

  • 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-16T00:22:55+00:00Added an answer on June 16, 2026 at 12:22 am
    byte[] buffer = {0};
    

    is simply a syntactic shortcut for

    byte[] buffer = new byte[] {0};
    

    and

    someFunction(new byte[] {0});
    

    is simply a syntactic shortcut for

    byte[] some_tmp_variable_1 = new byte[] {0};
    someFunction(some_tmp_variable_1);
    

    So, as the others have concluded, you are not in fact passing the array to the method in different ways – you are always performing the exact same operation: All three pieces of code allocate local stack storage for a reference, all three perform a heap allocation via new and initialise the array memory with the provided value. Lastly, all pass the array reference to the method by value.

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

Sidebar

Related Questions

In .Net, you can generate byte code in memory, and presumably save the resulting
When creating a new ASP.NET MVC 3 project, there is no pre-created directory for
Presumably there's some tiny performance hit, but beyond that?
That title is presumably awfully worded. I have some PostgreSQL tables. There is a
I'm having some IE7 (and presumably IE6) issues with the script. <script type=text/javascript> $(document).ready(function(){
In the CLR (the runtime used by C#, VB.NET, etc.) there's a way of
I saw there are lots of resources available on net regarding this question. I
The Scala compiler compiles direct to Java byte code (or .NET CIL). Some of
My question is about order of execution guarantees in C# (and presumably .Net in
I have very little experience with asp.net and need some help with a presumably

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.