Files
DaSaSo/DaSaSo.ConsoleApp/Program.cs
2021-09-29 17:02:36 +02:00

17 lines
384 B
C#

// See https://aka.ms/new-console-template for more information
using DaSaSo.ConsoleApp;
using DaSaSo.Domain.Model;
using DaSaSo.Domain.Services;
using DaSaSo.EntityFramework;
using DaSaSo.EntityFramework.Services;
using System.Diagnostics;
testclass test = new testclass();
test.data = efields.CATRA | efields.PRO;
var s = test.data.HasFlag(efields.CATRA);
Debugger.Break();