The typedreference tag has no wiki summary.
9
votes
3answers
256 views
Keep a TypedReference alive out of method block without returning it
I want to premise that this question's purpose is checking if there's at least one way, even if through the most unsafe hack, to keep a reference to a non-blittable value type. I am aware that such a ...
4
votes
1answer
106 views
Access fields of a Struct in an Object with Reflection
I'm trying to use reflection (ultimately on unknown at compile time) object which include struct. I've got as far as TypedReference.MakeTypedReference but I've hit a wall.
Here's my Class and Struct
...
59
votes
2answers
3k views
Why is TypedReference behind the scenes? It's so fast and safe… almost magical!
Warning: This question is a bit heretical... religious programmers always abiding by good practices, please don't read it. :)
Does anyone know why the use of TypedReference is so discouraged ...
10
votes
2answers
847 views
Practical uses of TypedReference
Are there any practical uses of the TypedReference struct that you would actually use in real code?
EDIT: The .Net framework uses them in overloads of Console.WriteLine and String.Concat which build ...