IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
UnixFileKeyAccessor.cs
Go to the documentation of this file.
1using System;
2
4{
5
6#if FIRST_PASS == false && EXPORTER == false && IMPORTER == false
7
8 internal sealed class UnixFileKeyAccessor : Accessor<object>
9 {
10
11 MethodAccessor<Func<long, long, object>> init;
12
17 public UnixFileKeyAccessor(AccessorTypeResolver resolver) :
18 base(resolver, "sun.nio.fs.UnixFileKey")
19 {
20
21 }
22
29 public object Init(long st_dev, long st_ino) => GetConstructor(ref init, typeof(long), typeof(long)).Invoker(st_dev, st_ino);
30
31 }
32
33#endif
34
35}