Retrieve Link Type

BlitzMax Forums/BlitzMax Programming/Retrieve Link Type

MattVonFat(Posted 2005) [#1]
I have a link stored and i want to use that link to access the type it refers to. Is there a way to do this? (I'm not too savvy when it comes to links and lists)

Thanks
Matt


Stuart Morgan(Posted 2005) [#2]
Does this help?

Local sty:TSomeType = TSomeType(SomeLink.Value())



MattVonFat(Posted 2005) [#3]
Thank you very much!