9 lines
143 B
C#
9 lines
143 B
C#
namespace Microsoft.CodeAnalysis.Collections.Internal;
|
|
|
|
internal enum InsertionBehavior : byte
|
|
{
|
|
None,
|
|
OverwriteExisting,
|
|
ThrowOnExisting
|
|
}
|