2
Answers

Do we have any free tools like visual studio for C# developm

Photo of dhinesh babu

dhinesh babu

9y
452
1
Hi,
 
I am a beginner and I am learning C#. For now, I am using Express edition of Visual studio to learn the basics. But If I am planning to develop a new website, Do I need to invest more money in buying IDE tools like Visual studio ultimate or versions higher than express ? or we can accomplish everything with some other tools. Need some advice. Becuase I am in the stage to select the technology to learn. 
 
Thanks,
Dhinesh 

Answers (2)

1
Photo of Frogleg
NA 7.9k 33k 12y
Here
drag a timer onto form and set interval to 1
 public partial class Form1 : Form
  {
  int milli = 0;
  public Form1()
  {
  InitializeComponent();
  }

  private void button1_Click(object sender, EventArgs e)
  {
  timer1.Start();
  }

  private void timer1_Tick(object sender, EventArgs e)
  {
  milli++;
  label1.Text = milli.ToString();
  }
  }
0
Photo of Jane Abrams
NA 3 2.3k 12y
The result is not in milliseconds