C Sharp: Versiyalar orasidagi farq

Kontent oʻchirildi Kontent qoʻshildi
Tahrir izohi yoʻq
Qator 2:
 
= Misol =
Consolda yozilgan hello world
<pre>
using System;
Qator 13 ⟶ 14:
}
</pre>
Windows Formada yozilgan hello world
 
<pre>
using System;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
label1.Text = "Hello, World!";
}
}
}
</pre>
{{stub}}