Esempio n. 1
0
        public override void Dump()
        {
            Dumper.Printf("event %s %s", GetVariableType().GetName(), GetName());
            Dumper.Printf("{");
            Dumper.Incr();

            // Dump the accessors.
            if (addModifier != null)
            {
                Dumper.Printf("add = %s", addModifier.GetName());
            }

            if (removeModifier != null)
            {
                Dumper.Printf("remove = %s", removeModifier.GetName());
            }

            Dumper.Decr();
            Dumper.Printf("}");
        }