Vb.net & C#.net

08/04/2004 - 11:58 por Juan Irigoyen | Informe spam
Como puedo traducir estas lineas a C#. Lo he intentado pero no puedo acceder
a los metodos
"NewRow","Rows" y "Select", desde vb funcionan bien. Gracias.

Dim drowSession As DataRow
drowSession = Context.Cache("SessionKeys ").NewRow()
drowSession("session_key ") = "323223"
Context.Cache("SessionKeys ").Rows.Add(drowSession)

strMatch = "session_key='323223'"
arrSessions = Context.Cache("SessionKeys ").Select(strMatch)
if arrSessions.Lenth > 0 Then
Return True
else
Return False
end if
 

Leer las respuestas

#1 Jose Selesan
08/04/2004 - 13:13 | Informe spam
DataRow drowSession;
drowSession = Context.Cache["SessionKeys"].NewRow();
drowSessin["session_key"] = "323223";
Context.Cache["SessionKeys"].Rows.Add(drowSession);

strMatch = "session_key=\"323223\"";
arrSessions = Context.Cache["SessionKeys"].Select(strMatch);
if (arrSessionns.Length > 0)
return true;
else
return false;

donde strMatch y arrSessions deben estar definidos como:
string strMatch;
DataRow[] arrSessions;

Un saludo
"Juan Irigoyen" escribió en el mensaje
news:gn9dc.5663$
Como puedo traducir estas lineas a C#. Lo he intentado pero no puedo


acceder
a los metodos
"NewRow","Rows" y "Select", desde vb funcionan bien. Gracias.

Dim drowSession As DataRow
drowSession = Context.Cache("SessionKeys ").NewRow()
drowSession("session_key ") = "323223"
Context.Cache("SessionKeys ").Rows.Add(drowSession)

strMatch = "session_key='323223'"
arrSessions = Context.Cache("SessionKeys ").Select(strMatch)
if arrSessions.Lenth > 0 Then
Return True
else
Return False
end if




Preguntas similares