Morronalaws
New Member
Hi Guru,<BR>How could i convert these nice VB functions to C#<BR>e.g Split(), Mid(), Left(), isnull(),..<BR><BR>Thanks Guru!Split():<BR>Use the String.Split method (see the docs)<BR><BR>Mid():<BR>Use the String.Substring method (see the docs)<BR><BR>Left():<BR>Use the String.Substring method (see the docs)<BR><BR>IsNull():<BR>bool MyIsNull(object x) { return x == null; }<BR><BR>Also, you may wish to consider asking C# questions in the C# forum: http://www.aspmessageboard.com/forum/CSharp.asp<BR><BR>Happy Programming!