Process() private method

private Process ( ) : void
return void
Example #1
0
 internal void ProcessAssemblyAttributeLists()
 {
     for (int i = 0, n = this.list.Count; i < n; i++)
     {
         Expression expr = this.list[i] as Expression;
         if (expr != null)
         {
             AssemblyCustomAttributeList acl = expr.operand as AssemblyCustomAttributeList;
             if (acl != null)
             {
                 acl.Process();
             }
         }
     }
 }
        internal void ProcessAssemblyAttributeLists()
        {
            int num   = 0;
            int count = this.list.Count;

            while (num < count)
            {
                Expression expression = this.list[num] as Expression;
                if (expression != null)
                {
                    AssemblyCustomAttributeList operand = expression.operand as AssemblyCustomAttributeList;
                    if (operand != null)
                    {
                        operand.Process();
                    }
                }
                num++;
            }
        }