public Class1()
    {
        U u = U.NewCase(item: 123);

        int t = u.Tag;
        int i = u.Item;

        bool isCaseError = u.IsCase;
        int  tagsError   = U.Tags.CaseA;

        U.Case c = (U.Case)u;
    }
Beispiel #2
0
        public Class1()
        {
            U? uError = U.NewCase(item: 123);
            SU?su     = SU.NewCase(item: 123);

            SU u = su.Value;

            int t = u.Tag;
            int i = u.Item;

            bool isCaseError = u.IsCase;
            int  tagsError   = U.Tags.CaseA;

            U.Case c = (U.Case)u;
        }