c# Programming Glossary: indirection
Why should a .NET struct be less than 16 bytes? http://stackoverflow.com/questions/1082311/why-should-a-net-struct-be-less-than-16-bytes save a bit of time though because you remove a layer of indirection so even if it is larger than these 4 bytes it might still be..
Generic type parameter covariance and multiple interface implementations http://stackoverflow.com/questions/14562047/generic-type-parameter-covariance-and-multiple-interface-implementations ambiguity. but once again we could add another level of indirection into the original assembly public void CallItOnDerived1 IGeneric..
Overhead of a .NET array? http://stackoverflow.com/questions/1589669/overhead-of-a-net-array single assignment it makes sense to reduce the number of indirections. In particular I suspect you don't really want to blow the.. the search in the first three steps there's not a lot of indirection which is good for something that's going to happen as often..
Why are .NET value types sealed? http://stackoverflow.com/questions/1769306/why-are-net-value-types-sealed precisely to allow lightweight objects that don ™t require indirection via references. So runtime polymorphism doesn ™t work for them..
Calling a static method on a generic type parameter http://stackoverflow.com/questions/196661/calling-a-static-method-on-a-generic-type-parameter
Securely Storing Optional Entropy While Using DPAPI http://stackoverflow.com/questions/2585746/securely-storing-optional-entropy-while-using-dpapi used to encrypt it but often times this single layer of indirection is enough to discourage most challengers. That would be the..
Handling the window closing event with WPF / MVVM Light Toolkit http://stackoverflow.com/questions/3683450/handling-the-window-closing-event-with-wpf-mvvm-light-toolkit complexity by using a more elaborate pattern with more indirection 5 extra lines of XML plus command pattern . The zero code behind..
Best Practices for IOC Container http://stackoverflow.com/questions/480286/best-practices-for-ioc-container
Choosing between immutable objects and structs for value objects http://stackoverflow.com/questions/575977/choosing-between-immutable-objects-and-structs-for-value-objects small since you don't want to copy large blobs of data and indirection through references is actually cheap so we don't gain much by..
CLR vs JIT http://stackoverflow.com/questions/601974/clr-vs-jit This involves having the initial native method stub be an indirection to instruct the JIT to compile the method then modify the original..
Is there C# support for an index-based sort? http://stackoverflow.com/questions/659866/is-there-c-sharp-support-for-an-index-based-sort thought of the best way to do this is to add one level of indirection and use an index based sort. Such sorts have been in use for..
ICustomTypeDescriptor, TypeDescriptionProvider, TypeConverter, and UITypeEditor http://stackoverflow.com/questions/749542/icustomtypedescriptor-typedescriptionprovider-typeconverter-and-uitypeeditor i.e. public T this int index get IListSource provides indirection between a data source and the data for example a DataTable implements..
How can I securely embed a static string (key) in C#? http://stackoverflow.com/questions/9511989/how-can-i-securely-embed-a-static-string-key-in-c Rijndael Key . This will introduce an extra layer of indirection so the key will not be accessible by simply dumping the symbols..
|