toString

Summary

Returns a string representation of the function value.

Usage

public override string toString()

Returns

A string representation of the function value.

Description

Returns a string representation of the function value.

Examples

Basic Usage
1
2
3
4
5
6
7
import System;
 
void() f1 = void() { };
Console.log(f1.toString()); // void() { ... }
 
void(int) f2 = void(int a) { };
Console.log(f2.toString()); // void(int a) { ... }

Share

HTML | BBCode | Direct Link