Files
4-Heli-DriveAxle-MesProject/Common/00-1Json8.3/Json8.3/Linq/MergeArrayHandling.cs
2026-05-29 13:50:18 +08:00

20 lines
518 B
C#

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
}
}