Difference between revisions of "CSharp Notes"
Jump to navigation
Jump to search
PeterHarding (talk | contribs) |
PeterHarding (talk | contribs) |
||
Line 31: | Line 31: | ||
==Events== | ==Events== | ||
* http://joelabrahamsson.com/detecting-mouse-and-keyboard-input-with-net/ | |||
* http://www.csharp-station.com/Articles/eventhandlingincsharp.aspx | * http://www.csharp-station.com/Articles/eventhandlingincsharp.aspx | ||
Revision as of 22:31, 28 May 2015
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
Events
- http://joelabrahamsson.com/detecting-mouse-and-keyboard-input-with-net/
- http://www.csharp-station.com/Articles/eventhandlingincsharp.aspx
Examples
List<Address> people = new List<Address>(); Address t = new Address(); people.RemoveAt(e.RowIndex); grdShow.EditIndex = -1; grdShow.DataSource = people; grdShow.DataBind();