Estou tentando programar em C# no Windows usando mono, escrevendo em um editor de texto e compilando via linha de comando usando mcs (mcs programa.cs) e usando Windows.
Eu testei esse programa mas deu erro:
FirstExample.cs :
using System;
using System.Windows;
using System.Windows.Forms;
using System.Windows.Controls;
using System.Web.UI.WebControls;
namespace FirstExample {
public partial class MainPage : UserControl {
public MainPage() {
InitializeComponent();
}
private void ClickMe_Click(object sender, RoutedEventArgs e) {
TextMessage.Text = "Congratulations! you have created your first Silverlight Applicatoin";
}
}
}
Compilando com o comando 'mcs' o programa gera alguns erros. Parece que não está encontrando as bibliotecas ou arquivos de cabeçalho. Esta dando os seguintes erros:
C:\Program Files (x86)\Apache Software Foundation\Apache2.2\htdocs\site>mcs FirstExample.cs
FirstExample.cs(3,22): error CS0234: The type or namespace name `Controls' does not exist in the namespace `System.Windows'. Are you missing an assembly reference?
FirstExample.cs(4,18): error CS0234: The type or namespace name `UI' does not exist in the namespace `System.Web'. Are you missing an assembly reference?
FirstExample.cs(8,36): error CS0246: The type or namespace name `UserControl' could not be found. Are you missing an assembly reference?
FirstExample.cs(14,49): error CS0246: The type or namespace name `RoutedEventArgs' could not be found. Are you missing an assembly reference?
Compilation failed: 4 error(s), 0 warnings
Alguém sabe como eu poderia resolver isto?
Eu testei um programa mais "simples" e compilou e rodou normalmente:
Programa.cs
using System;
namespace teste
{
class Programa
{
public static void Main(string[] args)
{
Console.WriteLine("Ola Mundo");
Console.Write("Pressione uma tecla para continuar...");
Console.ReadKey(true);
}
}
}
Saída:
Ola Mundo
Pressione uma tecla para continuar...
Este só tem o cabeçalho "System" e compilou normalmente.
Pergunta
Usurname
Olá,
Estou tentando programar em C# no Windows usando mono, escrevendo em um editor de texto e compilando via linha de comando usando mcs (mcs programa.cs) e usando Windows.
Eu testei esse programa mas deu erro:
FirstExample.cs :
using System; using System.Windows; using System.Windows.Forms; using System.Windows.Controls; using System.Web.UI.WebControls; namespace FirstExample { public partial class MainPage : UserControl { public MainPage() { InitializeComponent(); } private void ClickMe_Click(object sender, RoutedEventArgs e) { TextMessage.Text = "Congratulations! you have created your first Silverlight Applicatoin"; } } }
Compilando com o comando 'mcs' o programa gera alguns erros. Parece que não está encontrando as bibliotecas ou arquivos de cabeçalho. Esta dando os seguintes erros:
C:\Program Files (x86)\Apache Software Foundation\Apache2.2\htdocs\site>mcs FirstExample.cs FirstExample.cs(3,22): error CS0234: The type or namespace name `Controls' does not exist in the namespace `System.Windows'. Are you missing an assembly reference? FirstExample.cs(4,18): error CS0234: The type or namespace name `UI' does not exist in the namespace `System.Web'. Are you missing an assembly reference? FirstExample.cs(8,36): error CS0246: The type or namespace name `UserControl' could not be found. Are you missing an assembly reference? FirstExample.cs(14,49): error CS0246: The type or namespace name `RoutedEventArgs' could not be found. Are you missing an assembly reference? Compilation failed: 4 error(s), 0 warnings
Alguém sabe como eu poderia resolver isto?
Eu testei um programa mais "simples" e compilou e rodou normalmente:
Programa.cs
using System; namespace teste { class Programa { public static void Main(string[] args) { Console.WriteLine("Ola Mundo"); Console.Write("Pressione uma tecla para continuar..."); Console.ReadKey(true); } } }
Saída:
Ola Mundo Pressione uma tecla para continuar...
Este só tem o cabeçalho "System" e compilou normalmente.
Obrigado.
Link para o comentário
Compartilhar em outros sites
0 respostass a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.