valueOf

Summary

Returns the primitive function value wrapped by the System.Function object.

Usage

public T valueOf()

Returns

The primitive function value wrapped by the System.Function object.

Description

Returns the primitive function value wrapped by the System.Function object.

Examples

Basic Usage
1
2
3
4
import System;
 
System.Function<void()> f = new System.Function(void(){});
f.valueOf(); // void(){}

Share

HTML | BBCode | Direct Link