Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
MergeFailedEventArgs.cs
Go to the documentation of this file.
1namespace System.Data;
2
4{
5 public DataTable? Table { get; }
6
7 public string Conflict { get; }
8
9 public MergeFailedEventArgs(DataTable? table, string conflict)
10 {
11 Table = table;
12 Conflict = conflict;
13 }
14}
MergeFailedEventArgs(DataTable? table, string conflict)