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

  • Home
  • SEARCH
  • 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 6603149
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T18:58:10+00:00 2026-05-25T18:58:10+00:00

In C#, I can declare an array variable like this object[] Parameters; and initialize

  • 0

In C#, I can declare an array variable like this

object[] Parameters;

and initialize it like this:

Parameters = new object[20];

In Visual Basic, declaring and initializing an array is easy:

Dim Parameters(19) As Object
Dim Parameters As Object(19)    ' Alternative syntax

How would I initialize an array variable that has already been declared in VB.NET?

Parameters = New Object(19) doesn’t work.


For example, how would I translate the following to VB.NET?

int value = 20;
object[] Parameters;
if (value > 10)
{
    Parameters = new Object[20];
}
  • 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-25T18:58:11+00:00Added an answer on May 25, 2026 at 6:58 pm

    Basically the same Visual Basic code as the others, but I’d use the opportunity to add a bit of style:

    Dim value = 20                ' Type inference, like "var" in C#
    Dim parameters() As Object    ' Could also be "parameters As Object()"
    If value > 10 Then
        parameters = New Object(19) {}   ' That's right, Visual Basic uses the maximum index
    End If                               ' instead of the number of elements.
    

    Local variables (parameters) should start with a lowercase letter. It’s an established convention and it helps to get correct syntax highlighting in Stack Overflow (this also applies to the original C# code).

    So, why are the braces {} required in Visual Basic? In Visual Basic, both method calls and array access use parenthesis (...). Thus, New X(4) could mean:

    • Create a new object of type X and pass 4 to the constructor,
    • Create a 5-element [sic] array of X.

    To distinguish the two cases, you use the array initializer syntax in the second case. Usually, the braces contain actual values:

    myArray = New Integer() {1, 2, 3}
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to declare 3d array variable but can't. int[][][] ary = new int[5][2][];
In VB.Net, I can declare a variable in a function as Static, like this:
I have an array and a variable declared like this NextPacketRegister : array (1
Is there any way can declare a bean in just like JSP UseBean in
In Java, one can declare a variable parameterised by an unknown generic type, which
What I mean is, can a variable/array declared and initialized be used in HTML,
is it possible to declare a variable length array with global scope in objective-c?
In my objective c class, I'd like to sort an array like this: NSArray
I've built an array of image URLs on a Wordpress template page like this:
I can: declare @idOrder int set @idOrder = 21319 I want: declare @idOrder int

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.