vote up 0 vote down star

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?

flag

50% accept rate

5 Answers

vote up 4 vote down check

Like this:

PointF[] points = new PointF[]{
    new PointF(0,0), new PointF(1,1)
};

In c# 3.0 you can write it even shorter:

PointF[] points = {
    new PointF(0,0), new PointF(1,1)
};

update Guffa pointed out that I was to short with the var points, it's indeed not possible to "implicitly typed variable with an array initializer".

link|flag
And we don't even need the size! Just the brackets!! – Agnel Kurian Mar 9 at 10:27
I've checked it in the snippet compiler and changed my answer. – Davy Landman Mar 9 at 10:28
No, you can't use an implicitly typed variable with an array initializer. – Guffa Mar 9 at 10:33
vote up 1 vote down

You need to instantiate each PointF with new.

Something like

Pointf[] points = { new PointF(0,0), new PointF(1,1), etc...

Syntax may not be 100% here... I'm reaching back to when I last had to do it years ago.

link|flag
vote up 1 vote down
PointF[] points = new PointF[]
{
    new PointF( 1.0f, 1.0f),
    new PointF( 5.0f, 5.0f)
};
link|flag
vote up 1 vote down

For C# 3:

PointF[] points = {
   new PointF(1f, 1f),
   new PointF(2f, 2f)
};

For C# 2 (and 1):

PointF[] points = new PointF[] {
   new PointF(1f, 1f),
   new PointF(2f, 2f)
};
link|flag
The 2.0 example is incorrect. – Agnel Kurian Mar 9 at 10:30
If you mean the brackets, then I edited the post before your comment... – Guffa Mar 9 at 10:35
vote up 0 vote down

how can I enycrpt my data by c#

link|flag
I think that you meant to ask a question, not answer one. Also, you should be a bit more specific in your question. – Guffa Mar 9 at 10:36

Your Answer

Get an OpenID
or

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