Module.GetFields Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Returns the global fields defined on the module.
Assembly: mscorlib (in mscorlib.dll)
Return Value
Type: System.Reflection.FieldInfo []An array that contains the global fields defined on the module; if there are no global fields, an empty array is returned.
The GetFields method does not return fields in a particular order, such as alphabetical or declaration order. Your code must not depend on the order in which fields are returned, because that order can vary.
Show: