Please Help... Vb.net to C#

  • 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
 
It will be helpful to use the QuickStart Tutorials as references.
We can look up examples of the type of task we are working on
and toggle the code in the examples to display the same code in
a different language...

SEE: http://samples.gotdotnet.com/quickstart/

--
<%= Clinton Gallagher
A/E/C Consulting, Web Design, e-Commerce Software Development
Wauwatosa, Milwaukee County, Wisconsin USA
NET (e-mail address removed)
URL http://www.metromilwaukee.com/clintongallagher/
 
Back
Top