 | DFStringColumnTransform(FuncString, String) Method |
Modifies the elements of this column by applying the given unary function to
each element.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic DFStringColumn Transform(
Func<string, string> function
)
Public Function Transform (
function As Func(Of String, String)
) As DFStringColumn
public:
DFStringColumn^ Transform(
Func<String^, String^>^ function
)
member Transform :
function : Func<string, string> -> DFStringColumn Parameters
- function FuncString, String
- A delegate object representing a function that
takes a single string parameter and returns a string.
Return Value
DFStringColumnA reference to self.
RemarksUpon exit, this[i] = function( this[i] ).
See Also