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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T11:18:20+00:00 2026-05-30T11:18:20+00:00

I am trying to initialize a newly created empty array by using a method.

  • 0

I am trying to initialize a newly created empty array by using a method. Example below.
This is the structure of the code that I want to create.

var v = exClass[5,5];
v.ExtensionMethodThatWillInitilize();

What I want ExtensionMethodThatWIllInitilize to do is following:

for(int y = 0 ; y < exClass.getLength(0); y++ ) {
for(int x = 0 ; x < exClass.getLength(1); x++ ) {
v[y,x] = new instanceObject();
}}

So I came up with below code…

namespace ConsoleApplication1
{
class Program
{
    static void Main(string[] args)
    {
        var oldEx = new ExClass[10, 10];
        var newEx = oldEx.init();
    }
}
public class ExClass
{
    public string exString
    public ExClass() {
    exString = " I AM NEW! YES! ";
 }
}
public static class tools
{
    static public ExClass[,] init(this ExClass[,] start)
    {
        var newArray = new ExClass[start.GetLength(0), start.GetLength(1)];
        for (int y = 0; y < start.GetLength(0); y++)
        {
            for (int x = 0; x < start.GetLength(1); x++)
            {
              newArray[y, x] = new ExClass();
            }
        }
        return newArray;
    }
}

Yet the problem is that I do not know how to modify my init method so that it can take any type of array and return corresponding array that had been initialize.
I tried to use generic type T but my lack of experience seems to fail.

Summery:

1) how do you come up with a method that will initialize an empty array in a single step.

2) how do you make sure that the method can initialize any type of array(assuming that the element in the array has a constructor that does not take any argument)

  • 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-30T11:18:21+00:00Added an answer on May 30, 2026 at 11:18 am

    Generics do work. You need to declare your method as a generic type.

    I have modified the above example as follows:

    class Program
    {
        static void Main(string[] args)
        {
            var oldEx = new ExClass[10, 10];
            var newEx = oldEx.init<ExClass>();
        }
    }
    public class ExClass
    {
        public string exString = "I AM NEW";
    }
    public static class tools
    {
        static public T[,] init<T>(this T[,] start)
        {
            var newArray = new T[start.GetLength(0), start.GetLength(1)];
            for (int y = 0; y < start.GetLength(0); y++)
            {
                for (int x = 0; x < start.GetLength(1); x++)
                {
                    newArray[y, x] = Activator.CreateInstance<T>();
                }
            }
            return newArray;
        }
    }
    

    As an answer to your comment below:

    class Program
    {
        static void Main(string[] args)
        {
            var oldEx = tools.init<ExClass>(10, 10);
    
        }
    }
    public class ExClass
    {
        public string exString = "I AM NEW";
    }
    public static class tools
    {
        static public T[,] init<T>(int x,int y)
        {
            var newArray = new T[x, y];
            for (int i = 0; i < x; i++)
            {
                for (int j = 0; j < y; j++)
                {
                    newArray[i, j] = Activator.CreateInstance<T>();
                }
            }
            return newArray;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to initialize an array of structures to all-0's, using the below syntax:
So i'm trying to initialize a variable in my opencl host code like this:
I am trying to initialize a multidimensional array. Here is my syntax; this does
Stuck here trying to initialize an array (c#) using a loop. The number of
I am trying to initialize a structure in MATLAB similar to how C code
I'm trying to initialize string with iterators and something like this works: ifstream fin(tmp.txt);
Edited again because it originally wasn't clear that I'm trying to initialize the arrays
How do I initialize a 2D array in Perl? I am trying the following
I'm trying to initialize SecureString and I need Char* for that. I tried to
I am trying to initialize the following array of the following struct, but my

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.