Tagged Questions

6
votes
7answers
6k views

How do you initialize a 2 dimensional array when you do not know the size

I have a two dimensional array that I need to load data into. I know the width of the data (22 values) but I do not know the height (estimated around 4000 records, but variable). I have it declared ...
3
votes
5answers
1k views

Array initialization with default constructor

public class Sample { static int count = 0; public int abc; public Sample() { abc = ++Sample.count; } } I want to create an array of above class, and want each ...
3
votes
6answers
19k views

How to set array length in c# dynamically

I am still new to C# and I've been struggling with various issues on arrays. I've got an array of metadata objects (name value pairs) and I would like to know how to create only the number of ...
0
votes
4answers
5k views

C#: PointF() Array Initializer

I need to hard code an array of points in my C# program. The C-style initializer did not work. PointF[] points = new PointF{ /* what goes here? */ }; How is it done?