CSharp Notes
Revision as of 17:58, 28 May 2015 by PeterHarding (talk | contribs)
Links
- http://www.codeproject.com/KB/threads/threadpoolmanager.aspx
- http://www.dreamincode.net/forums/topic/35616-cross-thread-communication-in-c%23/
Treads
- http://stackoverflow.com/questions/334860/in-c-what-is-the-recommended-way-of-passing-data-between-2-threads
- http://www.codeproject.com/KB/threads/threadpoolmanager.aspx
- http://stackoverflow.com/questions/1360533/how-to-share-data-between-different-threads-in-c-using-aop
- http://www.yoda.arachsys.com/csharp/threads/
Deadlocks
INI FIles
- http://jachman.wordpress.com/2006/09/11/how-to-access-ini-files-in-c-net/\
- http://www.codeproject.com/KB/cs/cs_ini.aspx An INI file class
Config Files
Lists
- http://stackoverflow.com/questions/10018957/c-sharp-remove-item-from-list
- http://stackoverflow.com/questions/4903893/how-to-delete-an-item-from-a-generic-list
Examples
List<Address> people = new List<Address>(); Address t = new Address(); people.RemoveAt(e.RowIndex); grdShow.EditIndex = -1; grdShow.DataSource = people; grdShow.DataBind();