I'm doing some astrophysics research and I'm analysing data using Win-Form Chart component. On X-Axis is date and on Y-Axis is value, and I'm applying MovingAverage using member method DataManipulator.FinancialFormula
of Chart on values.
I and my advisor are concerned how this function handles missing dates. So I tried to look with ILSpy
into System.Windows.Forms.DataVisualization.dll
to see how it's implemented but I found all function bodies empty but when I examined TcpClient
Dispose
and Close
methods, I was able to see full function bodies. I have tried ILDasm
and JustDecompile
with same results as ILSpy
.
Why are method bodies from System.Windows.Forms.DataVisualization.dll
empty?
So where the real code of DataManipulator.FinancialFormula
is located?
Or how this function handles gaps in dates?