C# Class NSupport.IntegerAccess

Provides extension methods for int for easy access.
Show file Open project: jittuu/NSupport

Public Methods

Method Description
Times ( this source, System.Action action ) : void

Loops the current int times with the given action.

Times ( this source, Action action ) : void

Loops the current int times with the given action.

Method Details

Times() public static method

Loops the current int times with the given action.
public static Times ( this source, System.Action action ) : void
source this A instance.
action System.Action A to loop.
return void

Times() public static method

Loops the current int times with the given action.
public static Times ( this source, Action action ) : void
source this A instance.
action Action A to loop.
return void