Difference between revisions of "CSharp Notes"
Jump to navigation
Jump to search
PeterHarding (talk | contribs) |
PeterHarding (talk | contribs) |
||
Line 35: | Line 35: | ||
* http://www.codeproject.com/Articles/7294/Processing-Global-Mouse-and-Keyboard-Hooks-in-C | * http://www.codeproject.com/Articles/7294/Processing-Global-Mouse-and-Keyboard-Hooks-in-C | ||
* http://www.java2s.com/Code/CSharp/Event/MouseMovement.htm | * http://www.java2s.com/Code/CSharp/Event/MouseMovement.htm | ||
* http://stackoverflow.com/questions/2698673/disabling-mouse-movement-and-clicks-altogether-in-c-sharp | |||
==Examples== | ==Examples== |
Revision as of 22:33, 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
- http://www.codeproject.com/Articles/7294/Processing-Global-Mouse-and-Keyboard-Hooks-in-C
- http://www.java2s.com/Code/CSharp/Event/MouseMovement.htm
- http://stackoverflow.com/questions/2698673/disabling-mouse-movement-and-clicks-altogether-in-c-sharp
Examples
List<Address> people = new List<Address>(); Address t = new Address(); people.RemoveAt(e.RowIndex); grdShow.EditIndex = -1; grdShow.DataSource = people; grdShow.DataBind();