Quote:
Originally Posted by privateer
OK.
You should make this (And much more) a part of the Documents on S3D.

|
Until SH5 there wasn't really a reason to, and since I didn't have much time it never made it into documentation. Perhaps over time. But as I indicated, if I know something (obscure) may help you or anyone and is fairly easy to explain I will support where I can and post how.
Quote:
Originally Posted by privateer
Since S3D is written in C#, would formulas (for lack of a better term)
work in add-on files?
Say something like declaring Mylong = Ulong, Ulong, Ulong
(With the correct terminalogy of course)
|
Yes and no, depends on the situation. And for that reason I'd say it would only make it more complex for others to read (non-coders) if I had mixed different declaration styles.
PS: a shorter notation for nullables btw is to append a ? (question mark) after the type.
'Nullable<float>' is the same as 'float?'