10 lines
141 B
C#
10 lines
141 B
C#
namespace Microsoft.CodeAnalysis.CSharp;
|
|
|
|
internal enum OperatorAnalysisResultKind : byte
|
|
{
|
|
Undefined,
|
|
Inapplicable,
|
|
Worse,
|
|
Applicable
|
|
}
|