IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
AccessorRef.cs
Go to the documentation of this file.
2{
3
4#if FIRST_PASS == false && EXPORTER == false && IMPORTER == false
5
10 internal struct AccessorRef<T> where T : Accessor
11 {
12
13 T accessor;
14
18 public T Value => JVM.Internal.BaseAccessors.Get(ref accessor);
19
20 }
21
22#endif
23
24}