Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
R

Ramesh Muthiah

@Ramesh Muthiah
About
Posts
3
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • convert string to array
    R Ramesh Muthiah

    string name = "John,Calvin,Steve";
    string [] arr = name.Split(new char[]{','});

    C# data-structures tutorial question

  • How can convert a lit<> to a DataTable?
    R Ramesh Muthiah

    Best you would create a DataRow and add the content, then add it to IList collection. it will give a new extension method CopyToDataTable() which you can easily make conversion. IList iRows = new List(); DataTable iTable = iRows.CopyToDataTable();

    C# question

  • Finding value in a list
    R Ramesh Muthiah

    IEnumerable filteredCountry = countries.Where(f => f.GetAbbreviation == "EG"); if (filteredCountry != null) { Country countryOne = filteredCountry.First(); } try out the above code !!!! :)

    C# question tutorial
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups