Microsoft Visual C Sharp
Microsoft Visual C# adalah sebuah program alat bantu pemrograman (Rapid Application Development tool) yang dibuat oleh Microsoft Corporation dan dapat digunakan untuk membuat program berbasis grafis dengan menggunakan bahasa pemrograman mirip C++. Program ini telah dimasukkan ke dalam produk Microsoft Visual Studio, bersama-sama dengan Visual C++, Visual Basic, Visual FoxPro serta Visual J#. Sejauh ini, program ini merupakan program yang paling banyak digunakan oleh para programmer untuk membuat program dalam bahasa C#.
Contoh program sederhana dalam bahasa Visual C#.Net yang dipakai untuk menghitung jumlah pembayaran dari m_item buah barang dengan harga m_price per item ditambah 5% pajak penjualan [1].
double m_item, m_price, tax, total;
m_item = double.Parse(textBox1.Text);
m_price = double.Parse(textBox2.Text);
tax = 0.05;
total = m_item*m_price*( 1 + tax);
label5.Text = total.ToString();
MessageBox.Show(“Well Done.”);
Microsoft Visual C# adalah sebuah bahasa pemrograman yang bersifat OOP (Object Oriented Programing) yang dikembangakan oleh Microsoft Corp guna menggantikan visual J# yang terhalah lisensi dengan pemilik java pada saat itu Sun Microsystem, yang akhirnya membuat Microsoft untuk merancang Sebuah bahasa pemrograman baru yang lebih dinamis
Lihat pula
- Visual Basic .NET
- Visual Basic
- Visual C++
- Microsoft Visual Studio
- Microsoft Visual Studio Express
- J sharp
Rujukan
- Hary Gunarto, Collected Computer Programming Problems in Visual C#.Net, Tech Publication, Singapore, 2007.
- Introduction to Microsoft Visual Studio Diarsipkan 2015-02-19 di Wayback Machine.
Content Disclaimer
Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.
- The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
- There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
- It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
- Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
- Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.