using System.Runtime.InteropServices; namespace Metod_Değer_Döndüren_Metot { public partial class Form1 : Form { public Form1() { InitializeComponent(); } //Parametre Almayan ve Değer Döndüren (Return) Metot string Mesaj() { return"Metod Çağrıldı"; //Değerimiz Çağrıldığında çalışacak döndürülecek Metodumuz } //Değer Alan Parametre Döndüren Metot int topla(int a, int b) { return a + b; //Döndürülecek olan Method } // return: Metot çalıştığında bir değer döndürmesini sağlar. ...