Convert string to List c

How to convert string to List[Of String]?

Code:

Dim name As List[Of String] = DB.GetNames[firstname].ToString[] ?

It is giving me error when i try tolist[of string]

Can you help me with this?

Try:Dim name As New List[Of String] name.Add[DB.GetNames[firstname]]
Hi,

Here is a couple of ways.

1] - Declaring your list ... and then populating:

Dim name As List[Of String] = New List[Of String] name.Add[test[]]

2] Populating when declaring:

Dim name As List[Of String] = New List[Of String][{DB.GetNames[firstname][]}]

... hope it helps.

Add your solution here

B I U S small BIG code var < > & link [^] encode untab case indent outdent

Preview 0

Existing Members

...or Join us

Download, Vote, Comment, Publish.

Your Email
This email is in use. Do you need your password?
Optional Password
When answering a question please:
  1. Read the question carefully.
  2. Understand that English isn't everyone's first language so be lenient of bad spelling and grammar.
  3. If a question is poorly phrased then either ask for clarification, ignore it, or edit the question and fix the problem. Insults are not welcome.
  4. Don't tell someone to read the manual. Chances are they have and don't get it. Provide an answer or move on to the next question.
Let's work to help developers, not make them feel stupid.

This content, along with any associated source code and files, is licensed under The Code Project Open License [CPOL]




CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 [416] 849-8900

Video liên quan

Chủ Đề