Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Help to translate this function from C# to VB
Message
From
11/04/2009 17:24:18
 
 
To
11/04/2009 16:22:01
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Miscellaneous
Thread ID:
01394360
Message ID:
01394377
Views:
44
how about
   Dim data As New List(Of Object)()
   data.Add(New ())
( I cheated - this is from

http://www.developerfusion.com/tools/convert/csharp-to-vb/

Just wanted to give you the link in case you don't have it. Generally useful.


>Hi
>I study one example code .. and this example written on C#
>
>I can't understand how to translate lins to Visual Basic :))
>
>
>List<object> data = new List<object>();
>data.Add(new{Id=id, Name = name});
>
>
>
>Here is full source
>
>
>        protected void CitiesRefresh(object sender, StoreRefreshDataEventArgs e)
>        {
>            XmlDocument xmlDoc = new XmlDocument();
>            xmlDoc.Load(HttpContext.Current.Server.MapPath("Cities.xml"));
>            List<object> data = new List<object>();
>
>            foreach (XmlNode cityNode in xmlDoc.SelectNodes(string.Concat("countries/country[@code='", this.Countries.SelectedItem.Value, "']/city")))
>            {
>                string id = cityNode.SelectSingleNode("id").InnerText;
>                string name = cityNode.SelectSingleNode("name").InnerText;
>
>                data.Add(new{Id=id, Name = name});
>            }
>            this.CitiesStore.DataSource = data;
>
>            this.CitiesStore.DataBind();
>


Charles Hankey

Though a good deal is too strange to be believed, nothing is too strange to have happened.
- Thomas Hardy

Half the harm that is done in this world is due to people who want to feel important. They don't mean to do harm-- but the harm does not interest them. Or they do not see it, or they justify it because they are absorbed in the endless struggle to think well of themselves.

-- T. S. Eliot
Democracy is two wolves and a sheep voting on what to have for lunch.
Liberty is a well-armed sheep contesting the vote.
- Ben Franklin

Pardon him, Theodotus. He is a barbarian, and thinks that the customs of his tribe and island are the laws of nature.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform