Skip to content

Instantly share code, notes, and snippets.

View pksivanantham's full-sized avatar
🎯
Focusing

Sivanantham Padikkasu pksivanantham

🎯
Focusing
View GitHub Profile
@markv12
markv12 / DelegateExamples.cs
Last active July 27, 2022 22:40
C# Action Func Predicate Examples
using System;
public class DelegateExamples
{
public void Run()
{
Action action1 = delegate { /*Do something*/ };
action1();
FunctionWithOnComplete(action1);