Grasshopper

algorithmic modeling for Rhino

Hi all,

This is probably a dumb question, but can't seem to find the key to it. How can you add a Null element to a List of some kind?

Explanation: my C# component returns a list of vectors as solutions to a geometry check, some of which may not be valid. But since amount of solutions and order must be consistent for other reasons, how can I insert a <null> element to the List<Vector3d> to convey a solution that wasn't found?

Thanks a lot!

Jose Luis

Views: 5792

Replies to This Discussion

Use nullable type(s) (see the ? used in List<Vector3d?> )

Attachments:
Or you can use Vector3d.Unset as a placeholder indicating an invalid value.

Or you can directly output a list of GH_Vector, which is a class and thus supports null values.

Awesome, thanks to both.

And here's the trad update (more complexity, more bugs, one division by zero == progress)

have nullable fun

Attachments:

Wow Peter, thank you for such a comprehensive response.

For the sake of completeness and indexability, I would like to post here some valuable comments in Peter's definition:

VB.Net’s Nothing keyword is is not the same as C#’s null. MSDN states, “Assigning Nothing to a variable sets it to the default value for its declared type. If that type contains variable members, they are all set to their default value”.

In other words, the Nothing keyword is actually equivalent to C#’s default(T) keyword, where T is the type that the expression is used as.

This can lead to nasty surprises with nullable types in conditional operators.

In C#, the expression (...) ? null : 1 will not compile, since “there is no implicit conversion between '<null>' and 'int'”.  Since  null is an untyped expression, the type of the conditional is inferred to be int, resulting in an error because null cannot be converted to int.

In VB.Net, by contrast, the equivalent expression, If((...), Nothing, 1), will compile, but will have unexpected results.Here too,  Nothing is an untyped expression, so the type of the conditional is inferred to be Integer.  However, unlike null, Nothing can be converted to Integer, so this is compiled as If((...), 0, 1),  which is probably not what the programmer intended.

In both languages, the solution is to use an expression which is actually typed as int?, by writing new int?(), (in C#) or New Integer?() (in VB.Net).

Thanks a lot again Peter, your example was super helpful.

RSS

About

Translate

Search

Photos

  • Add Photos
  • View All

Videos

  • Add Videos
  • View All

© 2024   Created by Scott Davidson.   Powered by

Badges  |  Report an Issue  |  Terms of Service