मैं C # के साथ नया हूं, मुझे जावा में कुछ बुनियादी ज्ञान है लेकिन मुझे यह कोड ठीक से चलाने के लिए नहीं मिल सकता है।
यह सिर्फ एक बुनियादी कैलकुलेटर है, लेकिन जब मैं कार्यक्रम को चलाता हूं VS2008 मुझे यह त्रुटि देता है:
मैंने लगभग एक ही कार्यक्रम किया, लेकिन जावा में जेस्विंग का उपयोग किया और इसने पूरी तरह से काम किया।
यहाँ c # का रूप दिया गया है:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace calculadorac
{
public partial class Form1 : Form
{
int a, b, c;
String resultado;
public Form1()
{
InitializeComponent();
a = Int32.Parse(textBox1.Text);
b = Int32.Parse(textBox2.Text);
}
private void button1_Click(object sender, EventArgs e)
{
add();
result();
}
private void button2_Click(object sender, EventArgs e)
{
substract();
result();
}
private void button3_Click(object sender, EventArgs e)
{
clear();
}
private void add()
{
c = a + b;
resultado = Convert.ToString(c);
}
private void substract()
{
c = a - b;
resultado = Convert.ToString(c);
}
private void result()
{
label1.Text = resultado;
}
private void clear()
{
label1.Text = "";
textBox1.Text = "";
textBox2.Text = "";
}
}
क्या समस्या हो सकती है? क्या इसे हल करने का कोई तरीका है?
पुनश्च: मैंने भी कोशिश की
a = Convert.ToInt32(textBox1.text);
b = Convert.ToInt32(textBox2.text);
और यह काम नहीं किया।