I am trying to write a simple console application as a learner with Dxcore open Api's. I have parsed a C# file using the following line of code.
LanguageElement parsedFile = parser.ParseFile(fileLocation)
and i want to try few basic things on this file. So i was trying to get all methods in this file and its parameters and place them in a list.
I saw a property which would do this but could not use it.
DevExpress.CodeRush.StructuralParser.TypeDeclaration.AllMethods
Also few links on Dxcore plugin development documentations would be helpful.
Thanks in Advance.