7 lines
128 B
C#
7 lines
128 B
C#
namespace Microsoft.CodeAnalysis.FlowAnalysis;
|
|
|
|
public interface IIsNullOperation : IOperation
|
|
{
|
|
IOperation Operand { get; }
|
|
}
|