Yes It is possible to cast the FieldInfo
to Dictionary
as below
This is one example, I have used in my code
Dictionary
GetTheDict = FilesAndPaths.GetType()
.GetFields()
.Where(f => f.Name.Equals(pLoadFile))
.Select(f => (Dictionary)f.GetValue(FilesAndPaths))
.Single();