IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
IkvmImporterExternalResourceItem.cs
Go to the documentation of this file.
1using System;
2
4{
5
10 {
11
18 public IkvmImporterExternalResourceItem(string filePath, string resourcePath)
19 {
20 if (string.IsNullOrEmpty(filePath))
21 throw new ArgumentException($"'{nameof(filePath)}' cannot be null or empty.", nameof(filePath));
22 if (string.IsNullOrEmpty(resourcePath))
23 throw new ArgumentException($"'{nameof(resourcePath)}' cannot be null or empty.", nameof(resourcePath));
24
25 FilePath = filePath;
26 ResourcePath = resourcePath;
27 }
28
32 public string FilePath { get; set; }
33
37 public string ResourcePath { get; set; }
38
39 }
40
41}
string ResourcePath
Path to the resource within the Java environment.
IkvmImporterExternalResourceItem(string filePath, string resourcePath)
Initializes a new instance.