PfsHelperPfsReadParamT Method (IntPtr, String, Int32) | 
 
            Return all parameters as a T typed array of the given keyword name and index
            
 
    Namespace: 
   DHI.PFS
    Assembly:
   DHI.PFS (in DHI.PFS.dll) Version: 19.0.0.0 (11.1.1.1111)
Syntaxpublic static T[] PfsReadParam<T>(
	IntPtr pfsSect,
	string keyword,
	int keywordNo
)
Public Shared Function PfsReadParam(Of T) ( 
	pfsSect As IntPtr,
	keyword As String,
	keywordNo As Integer
) As T()
public:
generic<typename T>
static array<T>^ PfsReadParam(
	IntPtr pfsSect, 
	String^ keyword, 
	int keywordNo
)
static member PfsReadParam : 
        pfsSect : IntPtr * 
        keyword : string * 
        keywordNo : int -> 'T[] 
Parameters
- pfsSect
 - Type: SystemIntPtr
pointer to section - keyword
 - Type: SystemString
keyword name - keywordNo
 - Type: SystemInt32
index of keyword, 1-based 
Type Parameters
- T
 - T can be bool, int, uint, float, double, string, DateTime, Guid, and Color
 
Return Value
Type: 
TT typed array
See Also