chore: 初始化合力驱动桥MES采集程序
This commit is contained in:
20
Common/00-1Json8.3/Json8.3/Linq/MergeArrayHandling.cs
Normal file
20
Common/00-1Json8.3/Json8.3/Linq/MergeArrayHandling.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
namespace Newtonsoft.Json.Linq
|
||||
{
|
||||
/// <summary>
|
||||
/// Specifies how JSON arrays are merged together.
|
||||
/// </summary>
|
||||
public enum MergeArrayHandling
|
||||
{
|
||||
/// <summary>Concatenate arrays.</summary>
|
||||
Concat = 0,
|
||||
|
||||
/// <summary>Union arrays, skipping items that already exist.</summary>
|
||||
Union = 1,
|
||||
|
||||
/// <summary>Replace all array items.</summary>
|
||||
Replace = 2,
|
||||
|
||||
/// <summary>Merge array items together, matched by index.</summary>
|
||||
Merge = 3
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user