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?
|
|
I need to hard code an array of points in my C# program. The C-style initializer did not work.
How is it done?
|
||
|
|
|
|
Like this:
In c# 3.0 you can write it even shorter:
update Guffa pointed out that I was to short with the |
||||||
|
|
|
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. |
||
|
|
|
|
|
||
|
|
|
|
For C# 3:
For C# 2 (and 1):
|
||||
|
|
|
how can I enycrpt my data by c# |
||
|