Hi JB,

It's me again ;)

If you have a class splitted into two files using 'partial' it is not
good to expect that the complete method is in one file.
part1:
    partial class PClass1
    {
        public PClass1()
        {
        }
    }
part2:
    partial class PClass1
    {
        int i = 12;
    }
The 'int i = 12;' is part of the ctor of the class. If you now debug
the ctor the complete debug sequence is done in the second file
because that was the first URI you have found.

Jan

-- 
--
mono-cecil

Reply via email to