I have the following dictionary:
public static Dictionary<string, string> ObterCodigo()
{
return new Dictionary<string, string>
{
{"18", "Teste"},
{"19", "Teste"},
{"02", "AAA"},...
I want to learn C # to become one of my main languages, but my current PC is a bit run out and does not run Visual Studio well, but with Visual Studio Code it's fine, do I need Visual Studio to program in C #? I would like to know if this is the...
I created a form to change a table, but my update is not working.
cnxCli.sel =/*"set dateformat dmy \n"+ */
"update Cliente" +
"set Nome = '" + txtNome.Text +"'," +
"Rg = '" + mskRg.Text +...
I have a sign-up access screen. I have to fill it with values registered in the database.
Follow the codes:
Models:
public partial class Aba
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverr...
How can I get the Text of my Label that is within a ListView without using the FindControl ( Item.FindControl("lblCodigoEdit") as Label).Text ), ie directly access
the value you have in my lblCodigoEdit ?...
Good morning,
I have projects using System.Web.MVC na versão 4.0.0.1 , I was working normally on the 2013 version of Visual Studio, now I'm trying to work with Visual Studio 2015 and my Views do not recognize some properties for example...
I'm using the .NET ticket booster in my application.
The ticket is generated, however how do I process the shipping file? Is this file saved somewhere in the application?
I took the example project that is in Git, but I do not know how to...
I have a format of String , for example:
xxxx-xxxx-xxx
However, instead of x you can enter several letters or numbers, for example:
A216-0450-013
X2LP-1018-589
Y585-0000-047
What I need to do is compare to see if t...