Ejemplo n.º 1
0
            public FileMappedField this[string e]
            {
                get
                {
                    FileMappedField f = this;

                    f.Value = e;

                    return(f);
                }
            }
Ejemplo n.º 2
0
            public Action this[FileMappedField e]
            {
                set
                {
                    if (Trigger)
                        return;

                    if (!string.IsNullOrEmpty(e.Value))
                        return;

                    value();

                    Trigger = true;
                }
            }
Ejemplo n.º 3
0
            public Action this[FileMappedField e]
            {
                set
                {
                    if (Trigger)
                    {
                        return;
                    }

                    if (!string.IsNullOrEmpty(e.Value))
                    {
                        return;
                    }

                    value();

                    Trigger = true;
                }
            }