E
etl2016
Guest
Hi,
Am new to C# and am debugging an existing very old C# application where there is {get ; set;} happening as below within a Class
public string XYZ {get ;set;}
When I searched the entire .sln solution, there is nowhere I could find the source code of the method XYZ.
In any programming language, being able to see the source code is the fundamental thing, which am not able to in this context. Is it possible that the functionality of the XYZ method is made into a .dll kind of unreadable content, and the actual source code is missing from the .sln ? However, it doesn't seem so - because , I am able to open the entire .sln solution in Visual Studio.
What are the tips of debugging this XYZ method, to locate its code? The breakpoint on this line is not helping even with Stepover/Stepinto features
many thanks
Continue reading...
Am new to C# and am debugging an existing very old C# application where there is {get ; set;} happening as below within a Class
public string XYZ {get ;set;}
When I searched the entire .sln solution, there is nowhere I could find the source code of the method XYZ.
In any programming language, being able to see the source code is the fundamental thing, which am not able to in this context. Is it possible that the functionality of the XYZ method is made into a .dll kind of unreadable content, and the actual source code is missing from the .sln ? However, it doesn't seem so - because , I am able to open the entire .sln solution in Visual Studio.
What are the tips of debugging this XYZ method, to locate its code? The breakpoint on this line is not helping even with Stepover/Stepinto features
many thanks
Continue reading...