Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
3answers
122 views

C# - Are FieldInfo and PropertyInfo Immutable or Mutable?

Basically, I have the following: protected static readonly FieldInfo SpecialField = FindSpecialField(); FxCop is complaining to me though that I should not make a field readonly if it is mutable ...
2
votes
0answers
178 views

Get line numbers of fields without using a c# parser

I would like to get the line #s of a type's fields. To get the line #'s of the statements in a method it is simple enough: Type type = typeof(MyClass); MethodInfo methodInfo = ...
2
votes
5answers
151 views

C#: is there a way to access the name of the current field?

In C#, I am defining a static field of a specific class. From within the class, I want to be able to display the name of the static field, pretty much like this: public class Unit { public string ...
2
votes
1answer
128 views

How can I filter FieldInfos that are the underlying implementation of a class event?

I want to get all the fields of a class without getting the underlying implementations of the class event. type.GetFields(BindingFlags...) returns the nuderlying delegate for event fields. Does anyone ...
1
vote
1answer
354 views

FieldInfo.GetValue return null for a private member while debugger indicates field is non null?

In C# / .NET 4.0 I am trying to retrieve a field value through reflection with: var bar = foo.GetType() .GetField("_myField", BindingFlags.Instance | BindingFlags.NonPublic) .GetValue(foo) I am ...
1
vote
1answer
261 views

How to reference a field by reflection

Sorry for the title, it's not explicit. Further to my precedent question, I want to subscribe a method to an event object retrieved dynamically (via reflection). The object in question is a field of ...
0
votes
1answer
27 views

Type.AssemblyQualifiedName for fields

Is there a way to get something like the Type.AssemblyQualifiedName property, which differentiates between a List of strings and a List of bytes, from a System.Reflection.FieldInfo? The ...
0
votes
1answer
79 views

How to get attributes on a referenced field

I have a question: Is there an elegant way of getting Attributes on a referenced field. Ie.: public class C1: Base { [MyAttribute] public string Field1; } public class Base { private void ...
0
votes
1answer
889 views

Getting the attributes of a field using reflection in C#

I wrote a method that extracts fields from an object like this: private static string GetHTMLStatic(ref Object objectX, ref List<string> ExludeFields) { Type objectType = objectX.GetType(); ...
0
votes
2answers
1k views

How do I get the FieldInfo of an array field?

I'm trying to get the field info of an array value from within a struct. So far I have the following, but I dont see how to get the infomration I want. [StructLayout(LayoutKind.Sequential)] ...