9 lines
89 B
C#
9 lines
89 B
C#
namespace DebuggingEssentials
|
|
{
|
|
public enum SearchCondition
|
|
{
|
|
Or = 0,
|
|
And = 1
|
|
}
|
|
}
|