System.Action.Invoke(XObjectHash)

Here are the examples of the csharp api System.Action.Invoke(XObjectHash) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

19 Source : ObjectUpdater.cs
with MIT License
from Toki-Labs

protected override void UpdateObject()
		{
			for (int i = 0; i < this._keyLength; ++i)
			{
				this._valueDic[this._keys[i]].updater(_invert, _factor);
			}
			if( this._updateHandler != null ) this._updateHandler(_source);
		}