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