File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
src/Castle.Core/DynamicProxy/Generators/Emitters/SimpleAST Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -22,10 +22,11 @@ namespace Castle.DynamicProxy.Generators.Emitters.SimpleAST
2222 using System . Reflection . Emit ;
2323
2424 /// <summary>
25- /// Wraps a reference that is passed
26- /// ByRef and provides indirect load/store support.
25+ /// Represents the storage location <c>X</c> referenced by a <see cref="Reference"/>
26+ /// holding a managed pointer ("by-ref") <c>&X</c> to it.
27+ /// It essentially has the same function as the pointer indirection / dereferencing operator <c>*</c>.
2728 /// </summary>
28- [ DebuggerDisplay ( "&{OwnerReference }" ) ]
29+ [ DebuggerDisplay ( "*{byRefReference }" ) ]
2930 internal class IndirectReference : Reference
3031 {
3132 private readonly Reference byRefReference ;
You can’t perform that action at this time.
0 commit comments