Inside the curly braces, just separate the return objects with a comma... it adds them to the array.This:
New FieldPropertyDescriptor() { }
Tells it to create a new array of type FieldPropertyDescriptor. Whatever you put in the curly braces are items in the newly created array (ReflectionPropertyDescriptor is a subclass of FieldPropertyDescriptor). So, it needs to look like this:
Return New FieldPropertyDescriptor() { New ReflectionPropertyDescriptor("Ctr", GetType(boCalc)), _
New ReflectionPropertyDescriptor("Ftr", GetType(boCalc)) }
Any others that you add just need to be separated by commas.