Difference between revisions of "CSharp Notes"
Jump to navigation
Jump to search
PeterHarding (talk | contribs) |
PeterHarding (talk | contribs) |
||
(12 intermediate revisions by the same user not shown) | |||
Line 3: | Line 3: | ||
* http://www.codeproject.com/KB/threads/threadpoolmanager.aspx | * http://www.codeproject.com/KB/threads/threadpoolmanager.aspx | ||
* http://www.dreamincode.net/forums/topic/35616-cross-thread-communication-in-c%23/ | * http://www.dreamincode.net/forums/topic/35616-cross-thread-communication-in-c%23/ | ||
* http://www.timvw.be/2007/02/22/presenting-the-sortablebindinglistt/ | |||
* http://www.c-sharpcorner.com/uploadfile/rahul4_saxena/crud-operation-in-mvc4-using-angularjs-and-wcf-rest-services/ | |||
=MSDN Magazine= | |||
* [https://msdn.microsoft.com/magazine/mt736457 Don't Get Me Started - Sing a Song of Silicon] | |||
* [https://msdn.microsoft.com/magazine/mt767702 Test Run - Matrix Inversion Using C#] | |||
* [https://msdn.microsoft.com/magazine/mt736460?f=255&MSPPError=-2147217396 Modern Apps - Build a Wi-Fi Scanner in the UWP] | |||
==Treads== | ==Treads== | ||
* http://www.albahari.com/threading/ | |||
* http://www.albahari.info/threading/threading.pdf | |||
* http://stackoverflow.com/questions/334860/in-c-what-is-the-recommended-way-of-passing-data-between-2-threads | * 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://www.codeproject.com/KB/threads/threadpoolmanager.aspx | ||
* http://stackoverflow.com/questions/1360533/how-to-share-data-between-different-threads-in-c-using-aop | * http://stackoverflow.com/questions/1360533/how-to-share-data-between-different-threads-in-c-using-aop | ||
* http://www.yoda.arachsys.com/csharp/threads/ | * http://www.yoda.arachsys.com/csharp/threads/ | ||
==Xamarin== | |||
* https://developer.xamarin.com/guides/ios/advanced_topics/xamarin_for_objc/ | |||
===Deadlocks=== | ===Deadlocks=== | ||
Line 28: | Line 42: | ||
* http://stackoverflow.com/questions/10018957/c-sharp-remove-item-from-list | * 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 | * http://stackoverflow.com/questions/4903893/how-to-delete-an-item-from-a-generic-list | ||
==Events== | |||
* https://msdn.microsoft.com/en-us/library/ms171542(v=vs.110).aspx | |||
* 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 | |||
* https://msdn.microsoft.com/en-us/library/ms171545(VS.80).aspx | |||
* http://www.blackwasp.co.uk/MouseWheel.aspx Mouse Wheel... | |||
==Examples== | ==Examples== |
Latest revision as of 11:33, 11 September 2016
Links
- http://www.codeproject.com/KB/threads/threadpoolmanager.aspx
- http://www.dreamincode.net/forums/topic/35616-cross-thread-communication-in-c%23/
- http://www.timvw.be/2007/02/22/presenting-the-sortablebindinglistt/
- http://www.c-sharpcorner.com/uploadfile/rahul4_saxena/crud-operation-in-mvc4-using-angularjs-and-wcf-rest-services/
MSDN Magazine
- Don't Get Me Started - Sing a Song of Silicon
- Test Run - Matrix Inversion Using C#
- Modern Apps - Build a Wi-Fi Scanner in the UWP
Treads
- http://www.albahari.com/threading/
- http://www.albahari.info/threading/threading.pdf
- 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/
Xamarin
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
- https://msdn.microsoft.com/en-us/library/ms171542(v=vs.110).aspx
- 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
- https://msdn.microsoft.com/en-us/library/ms171545(VS.80).aspx
- http://www.blackwasp.co.uk/MouseWheel.aspx Mouse Wheel...
Examples
List<Address> people = new List<Address>(); Address t = new Address(); people.RemoveAt(e.RowIndex); grdShow.EditIndex = -1; grdShow.DataSource = people; grdShow.DataBind();