Skip to content

Instantly share code, notes, and snippets.

@FredrikL
Created April 19, 2012 10:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FredrikL/2420070 to your computer and use it in GitHub Desktop.
Save FredrikL/2420070 to your computer and use it in GitHub Desktop.
ToArray
using System.Linq;
namespace Baz
{
public class Foo
{
public byte[] Bar()
{
byte[] b = new byte[] {};
return b.ToArray();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment