Retrieve Link Type

BlitzMax Forums/BlitzMax Programming/Retrieve Link Type

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

Does this help?

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


Thank you very much!