Please Help, vb.net to c#.net

  • Thread starter Thread starter Juan Irigoyen
  • Start date Start date
J

Juan Irigoyen

How I can traduce this sentences, thanks.

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
 
Back
Top