PD
Size: a a a
PD
PD
PD
E
NN
Ι
AY
Ι
W
W
Ι
W
E
E
W
W
PK
W
PK
Ι
static class Primer {
delegate float Transformer(float f);
static void Ololo() {
Transformer t = Square;
float result = t(3.0f); // 9.0f
}
static float Square(float f) => Mathf.Pow(f, 2.0f);
}