Ir para conteúdo

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

leo_rsouza

erro no código em C#

Recommended Posts

Boa tarde...

estou com o problema com o seguinte código C# que está dando erro......

 

ASP

[*]

 

[*]  public int newFunction(int v1, int v2, String a) {

 

[*]  

 

[*]  switch (a)

 

[*] {

 

[*]  case "+" : return 1; break;

 

[*]  case "-" : return 2; break;

 

[*] }

 

[*]

 

[*]  }

 

[*]

 

oq eu pode ser o erro ????

Compartilhar este post


Link para o post
Compartilhar em outros sites

tente assim

 

 public int newFunction(int v1, int v2, String a)   { 	 switch(a) 	 {    case "+" : return 1;    case "-" : return 2; 	 } 	 return 0;  }

Compartilhar este post


Link para o post
Compartilhar em outros sites
public static bool IsNumeric(string valor)  { 	 Regex reg = new Regex("^[0-9]*[1-9]+$|^[1-9]+[0-9]*$"); 	 return reg.IsMatch(valor);  }

Compartilhar este post


Link para o post
Compartilhar em outros sites

Tentei usar essa funcao com Regex, porem dá o seguinte erro...The type or namespace name 'Regex' could not be found (are you missing a using directive or an assembly reference?) Alguem pode ajudar?

Compartilhar este post


Link para o post
Compartilhar em outros sites

tem que importar a biblioteca do Regex:

using System.Text.RegularExpressions;
t+

Tentei usar essa funcao com Regex, porem dá o seguinte erro...The type or namespace name 'Regex' could not be found (are you missing a using directive or an assembly reference?) Alguem pode ajudar?

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.