Esempio n. 1
0
        public void ForEach(DELEGATE_StringAttributes dlgt1)
        {
            bool isBreak = false;

            foreach (KeyValuePair <string, string> kvp in this.map)
            {
                dlgt1(kvp.Key, kvp.Value, ref isBreak);

                if (isBreak)
                {
                    break;
                }
            }
        }
Esempio n. 2
0
        public void ForEach(DELEGATE_StringAttributes dlgt1)
        {
            bool bBreak = false;

            foreach (KeyValuePair <string, string> kvp in this.dictionary_Attribute)
            {
                dlgt1(kvp.Key, kvp.Value, ref bBreak);

                if (bBreak)
                {
                    break;
                }
            }
        }
        public void ForEach(DELEGATE_StringAttributes dlgt1)
        {
            bool bBreak = false;
            foreach (KeyValuePair<string, string> kvp in this.dictionary_Attribute)
            {
                dlgt1(kvp.Key, kvp.Value, ref bBreak);

                if (bBreak)
                {
                    break;
                }
            }
        }