Hello,
Gendarme froze while analyzing my project. Further research indicated
that this piece of code:

    public class Class1
    {
        public class nauczyciel
        {
            public Guid Oid;
            public List<object> NoweGrupies = new List<object>();
        }
        public List<nauczyciel> nauczyciele = new List<nauczyciel>();
        public void WyslijMaile(List<Guid> ListIdJ, Guid idRok)
        {

            var cmd = from c in nauczyciele
                      where ListIdJ.Contains(c.Oid)
                      select c;
            foreach (var s in cmd)
            {
                try
                {
                    foreach (var grp in s.NoweGrupies) ;
                }
                catch (Exception ex)
                {
                }
            }
        }
    }

compiled by visual studio 2008 puts Gendarme 2.10 into infinite loop.
Since I am trying to set up sonar .net, I would love to see this issue
fixed. BTW. this tool is great!
Cheers.

-- 
You received this message because you are subscribed to the Google Groups 
"Gendarme" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/gendarme?hl=en.

Reply via email to