FindTransform<TResult> Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
A function taking file name and returning an arbitrary result.
generic <typename TResult>
public delegate TResult FindTransform(ReadOnlySpan<char> % fileName);
public delegate TResult FindTransform<TResult>(ref ReadOnlySpan<char> fileName);
type FindTransform<'Result> = delegate of ReadOnlySpan -> 'Result
Public Delegate Function FindTransform(Of TResult)(ByRef fileName As ReadOnlySpan(Of Char)) As TResult
Type Parameters
- TResult
The type of the result to return
Parameters
- fileName
- ReadOnlySpan<Char>
The file name to transform.
Return Value
TResult