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 1234567import 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