int Area(int width, int height) { return width * height; } void Start() { Area(100, 50); // 선택적 매개변수 Area(height:50, width:100); // 명명된 매개변수 }