Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Func Delegate
//Rextester.Program.Main is the entry point for your code. Don't change it. //Compiler version 4.0.30319.17929 for Microsoft (R) .NET Framework 4.5 using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace Rextester { public class Program { static Func<int,int,int> MyDelegate; public static void Main(string[] args) { MyDelegate = (x,y) => x*y; int a = MyDelegate(10,50); Console.WriteLine(a); } } }
run
|
edit
|
history
|
help
0
Collections
Main 5.6
printing * in pyramid shape
Non Generic object based class
Prime Fibonacci
Šovljanski - beskonačna petlja bez goto-a
linq sort
Coding
DN3
Project Euler Problem 10