Conversion from Vb. Net to C#

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

HI EveryBody:

How can I convert the foloowing code from VB.Net to C#:

sBody = Trim(TextBox6.Text)

where sBody Is string

any help will be appreciated

regard's

Husam
 
Hello Husam,

sBody = TextBox6.Text.Trim()

H> HI EveryBody:
H> How can I convert the foloowing code from VB.Net to C#:
H> sBody = Trim(TextBox6.Text)
H> where sBody Is string
H> any help will be appreciated
---
WBR,
Michael Nemtsev :: blog: http://spaces.msn.com/laflour

"At times one remains faithful to a cause only because its opponents do not
cease to be insipid." (c) Friedrich Nietzsche
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top