Forum: C# Jun 14th, 2009 |
| Replies: 16 Views: 905 Store a string in a string variable and then use this code.
string todelimit="";
string[] sep= {","};
string[] stringarray = todelimit.Split(sep, StringSplitOptions.None);
string... |
Forum: C# Jun 14th, 2009 |
| Replies: 3 Views: 1,100 C# get and set are accessors and are used in Indexers and Properties. These allows to set or fetch the value stored in the private class members. Refer... |
Forum: C# Jun 11th, 2009 |
| Replies: 16 Views: 905 You can read read the whole set of data returned by the SQL query row by row if you use OleDbDataReader.
You select a row, get the string from the required column and then split that string in... |