type

  1. N

    Question Defining a Generic Extension Method

    I am trying to write an Extension Method for IEnumerable(Of T). I will be using reflection on the Type T in the Extension Method to get a list of it's properties so that I can create an Anonymous Type that will include all those properties. I have written Extension Methods before, but never a...
  2. N

    Question Intellisense entering type rather than value

    I have a class that has a property declared as follows: Public Property Position As Byte() Very simple property, nothing complicated. However, in Visual Studio 2010 when accessing this property, I type the following (temp is just the name of a variable): temp.Position(1) but Visual Studio...
Back
Top