mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-16 07:14:09 +02:00
Got rid of Action<T>/Func<T>
This commit is contained in:
parent
44bd9c698f
commit
b52db47d55
37 changed files with 94 additions and 88 deletions
|
@ -529,12 +529,6 @@ namespace System
|
|||
}
|
||||
}
|
||||
|
||||
delegate void Action();
|
||||
delegate void Action<T1>(T1 p1);
|
||||
delegate void Action<T1, T2>(T1 p1, T2 p2);
|
||||
delegate TResult Func<TResult>();
|
||||
delegate TResult Func<T1, TResult>(T1 p1);
|
||||
delegate TResult Func<T1, T2, TResult>(T1 p1, T2 p2);
|
||||
delegate int32 Comparison<T>(T a, T b);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue