Evbpc.Framework.Drawing.Size.Add C# (CSharp) Méthode

Add() public static méthode

Adds two Size structures together and returns the result.
public static Add ( Size sz1, Size sz2 ) : Size
sz1 Size The first to add.
sz2 Size The second to add.
Résultat Size
        public static Size Add(Size sz1, Size sz2) => sz1 + sz2;