Erreur console dans visual c#express 2010
Bonjour,
Je viens juste de commencer le c# mais je ne suis pas débutant en programmation.
J'ai un souci avec Visual C# 2010 express en créant un programme des plus simples (windows form).
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| 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 WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
Console.Write("salut");
}
}
} |
Je n'ai aucune sortie de texte et quand je passe ma sourie avec le + sur Console, il me signale une erreur IOException.
Une idée ?