Csharp notes

The out Operator in C#

int width = 5;
int calculatedArea;
CalculateArea(width, out calculatedArea);

Auto-Implemented Properties

    public class EnergyComponent
    {
        public float MaxEnergy { get; set; }
        public float currentEnergy { get; set; } = 10f;
        public EnergyComponent(float maxEnergy)
        {
            MaxEnergy = maxEnergy;
        }
    }

To make objects immutable:

Misc

[Export]
private FooObject _object = null!;