Cuestión : CREAR la CLASE EN C#

1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
 Currancyrate vacío privado ()
    {
        Conexión de SqlConnection = nuevo SqlConnection (this.connStr);
        conexión. Abrirse ();
        Comando de SqlCommand = nuevo SqlCommand (“seleccionar * de shiv.exchange_rate donde país = '” + esto. Sesión [“tipo de cambio”] .ToString () +” '“, conexión);
        Lector de SqlDataReader = command.ExecuteReader ();
        si (lector. Leído ())
        {
            this.lblcurrency. Texto = lector [“tarifa”] .ToString ();
            esto. Lblcusymb1.Text = lector [“símbolo”] .ToString ();
        }
        conexión. Cierre ();
        conexión. Disponer ();
        lector. Cierre ();
        lector. Disponer ();
        comando. Disponer ();
    }


Este mi código en código detrás del archivo que quiero creo la clase y consigo el valor (lblcurrency, Lblcusymb1)

Respuesta : CREAR la CLASE EN C#

Intento:

PARTE MOVIBLE EN el tblRegistration
(Fiscal, Redetermination)
SELECTO
      2011,
      Redetermination
DE
tblRegistration
Donde Fiscal= 2010 y Redetermination = “X”
Otras soluciones  
 
programming4us programming4us