Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm sorry if this is a duplicate question, but I cannot find an answer to this on here or elsewhere on the web.

I'm busy rewriting an old project that was done in C++, to C#.

My task is to rewrite the program so that it functions as close to the original as possible.

During a bunch of file-handling the previous developer who wrote this program creates a structure containing a ton of fields that correspond to the set format that a file has to be written in, so all that work is already done for me.

These fields are all byte arrays. What the C++ code then does is use memset to set this entire structure to all spaces characters (0x20). One line of code. Easy.

This is very important as the utility that this file eventually goes to is expecting the file in this format. What I've had to do is change this struct to a class in C#, but I cannot find a way to easily initialize each of these byte arrays to all space characters.

What I've ended up having to do is this in the class constructor:

//Initialize all of the variables to spaces.
int index = 0;
foreach (byte b in UserCode)
{
    UserCode[index] = 0x20;
    index++;
}

This works fine, but I'm sure there must be a simpler way to do this. When the array is set to UserCode = new byte[6] in the constructor the byte array gets automatically initialized to the default null values. Is there no way that I can make it become all spaces upon declaration, so that when I call my class' constructor that it is initialized straight away like this? Or some memset-like function? Thank you in advance.

share|improve this question

9 Answers

up vote 16 down vote accepted

For small arrays use array initialisation syntax:

var sevenItems = new byte[] { 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20 };

For larger arrays use a standard for loop. This is the most readable and efficient way to do it:

var sevenThousandItems = new byte[7000];
for (int i = 0; i < sevenThousandItems.Length; i++)
{
    sevenThousandItems[i] = 0x20;
}

Of course, if you need to do this a lot then you could create a helper method to help keep your code concise:

byte[] sevenItems = CreateSpecialByteArray(7);
byte[] sevenThousandItems = CreateSpecialByteArray(7000);

// ...

public static byte[] CreateSpecialByteArray(int length)
{
    var arr = new byte[length];
    for (int i = 0; i < arr.Length; i++)
    {
        arr[i] = 0x20;
    }
    return arr;
}
share|improve this answer
Hmmm... not a bad suggestion. That would indeed be both more efficient and more readable than the Enumerable method. Thanks for the input. – DeVil May 27 '11 at 9:45
2  
You might want to turn that into an extension method, too. That way you could call it like byte[] b = new byte[5000].Initialize(0x20); The extension method would be declared as public static byte[] Initialize(this byte[] array, byte defaultValue) and contain the for loop. It should return the array. – Thorsten Dittmar May 27 '11 at 11:43
How come this is legal but new byte {4,3,2}; throws an error saying byte doesn't implement the enumerable type? – advocate Nov 16 '12 at 22:00

Use this to create the array in the first place:

byte[] array = Enumerable.Repeat((byte)0x20, <number of elements>).ToArray();

Replace <number of elements> with the desired array size.

share|improve this answer
Ah, there we go. That's the kind of function I was looking for. Thanks a bunch. – DeVil May 27 '11 at 9:21
This is inferior to the OP's original solution. This still involves creating and filling the array in separate steps. In fact, it will usually end up creating, filling and then discarding several (perhaps many) intermediate arrays instead of just allocating a single array and then filling it. – LukeH May 27 '11 at 9:25
2  
Interestingly as the question that @PompolutZ found stackoverflow.com/questions/1897555/… suggests this is not as efficient as the loop which probably makes some sense really since this is doing a lot more than just setting some values. It might be simpler (which is what was asked) but I don't know that this means better. :) As always test performance if relevant. ;-) – Chris May 27 '11 at 9:25
1  
@LukeH/@Chris: I read the performance analysis that PompolutZ found in his second link. It's rather interesting to see that the simple for loop is so much more efficient for a large number of array elements and iterations. In the OP's scenario, performance should not be an issue - and he asked for something "simpler" than a loop ;-) – Thorsten Dittmar May 27 '11 at 9:31
Indeed. My main concern here is more compact code; if I have to do this method for each of the files that the program has to generate and process and keep things as they are, I'm going to have to copy and paste a ton of loops. I'm sure there are ways to implement this file-handling in C# that will make this problem moot, but I'm on quite a tight time-schedule here, so it's much more convenient to mimic the way it was done in the old code. As I've mentioned in another comment these arrays are all very small, but there are a lot of them so the Enumerable method is the most compact. – DeVil May 27 '11 at 9:41
show 1 more comment

You can use Enumerable.Repeat()

Array of 100 items initialized to 0x20:

byte[] arr1 = Enumerable.Repeat(0x20,100).ToArray();
share|improve this answer
1  
Is the .ToArray() needed as in Thorsten's answers? – Chris May 27 '11 at 9:18
Not sure about it, it might do it implicitly. (I don't have vs2010 running to test it) – Yochai Timmer May 27 '11 at 9:19
Enumerable.Repeat() returns an IEnumerable, so the explicit call of ToArray() is required. – Scott Ferguson Apr 17 '12 at 0:59
var array = Encoding.ASCII.GetBytes(new string(' ', 100));
share|improve this answer
+1 … looks roundabout at first but is actually the most self-documenting code of all that were posted so far. – Konrad Rudolph May 27 '11 at 9:58

Maybe these could be helpful?

What is the equivalent of memset in C#?

http://techmikael.blogspot.com/2009/12/filling-array-with-default-value.html

share|improve this answer
1  
Interesting links that suggest the currently upvoted answers are actually less efficient than the loop for large sizes. – Chris May 27 '11 at 9:24
Good point, but these fields are all fairly small as they each only read a single value from a database. I like the Enumerable method since there are quite a few files that this program has to process and generate and they all are done in this manner, so it makes the code much more compact. – DeVil May 27 '11 at 9:29
1  
@DeVil: if you want compact code you could easily just create a method with signature something like PopulateByteArray(byte[] array, byte value) and then have your code in that. I'd say that was probably even neater than repeating the Enumerable.Repeat all over the place and has the advantage of better efficienct too. ;-) – Chris May 27 '11 at 9:32
Agreed. Seems I may have been a bit hasty in my acceptance of the Enumerable.Repeat method. – DeVil May 27 '11 at 9:47

Guys before me gave you your answer. I just want to point out your misuse of foreach loop. See, since you have to increment index standard "for loop" would be not only more compact, but also more efficient ("foreach" does many things under the hood):

for (int index = 0; index < UserCode.Length; ++index)
{
    UserCode[index] = 0x20;
}
share|improve this answer
You may be right. I was implementing this particular part of the code one Saturday afternoon (no overtime pay ;( ) and my brain was at that point where I was just panel-beating code to make it work. It's been bugging me since and I've only now come back to look at it. – DeVil May 27 '11 at 9:26

Just to expand on my answer a neater way of doing this multiple times would probably be:

PopulateByteArray(UserCode, 0x20);

which calls:

public static void PopulateByteArray(byte[] byteArray, byte value)
{
    for (int i = 0; i < byteArray.Length; i++)
    {
        byteArray[i] = value;
    }
}

This has the advantage of a nice efficient for loop (mention to gwiazdorrr's answer) as well as a nice neat looking call if it is being used a lot. And a lot mroe at a glance readable than the enumeration one I personally think. :)

share|improve this answer

You could speed up the initialization and simplify the code by using the the Parallel class:

public static void PopulateByteArray(byte[] byteArray, byte value)
{
    Parallel.For(0, byteArray.Length, i => byteArray[i] = value);
}

Of course you can create the array at the same time:

public static byte[] CreateSpecialByteArray(int length, byte value)
{
    var byteArray = new byte[length];
    Parallel.For(0, length, i => byteArray[i] = value);
    return byteArray;
}
share|improve this answer

You can use a collection initializer:

UserCode = new byte[]{0x20,0x20,0x20,0x20,0x20,0x20};

This will work better than Repeat if the values are not identical.

share|improve this answer
2  
Useful for small arrays but definitely not for bigger ones. :) – Chris May 27 '11 at 9:16
Indeed. I'm aware of this way of initializing, but there are a LOT of fields and they all vary in size. This method would be even more painful than my loops. – DeVil May 27 '11 at 9:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.