Difference between revisions of "CSharp Notes"

From PeformIQ Upgrade
Jump to navigation Jump to search
 
(18 intermediate revisions by the same user not shown)
Line 1: Line 1:
=Links=
=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=
* [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==
* 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://www.codeproject.com/KB/threads/threadpoolmanager.aspx
* http://www.dreamincode.net/forums/topic/35616-cross-thread-communication-in-c%23/
* http://stackoverflow.com/questions/1360533/how-to-share-data-between-different-threads-in-c-using-aop
* http://www.yoda.arachsys.com/csharp/threads/
 
==Xamarin==
 
* https://developer.xamarin.com/guides/ios/advanced_topics/xamarin_for_objc/
 
===Deadlocks===
 
* http://www.yoda.arachsys.com/csharp/threads/deadlocks.shtml


==INI FIles==
==INI FIles==
Line 13: Line 37:


* http://www.codeproject.com/KB/cs/readwritexmlini.aspx
* http://www.codeproject.com/KB/cs/readwritexmlini.aspx
=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==
<pre>
List<Address> people = new List<Address>();
Address t = new Address();
people.RemoveAt(e.RowIndex);
grdShow.EditIndex = -1;
grdShow.DataSource = people;
grdShow.DataBind();
</pre>
=Working with Images=
[[C-Sharp Image Processing]] | [[C-Sharp - Working with Images]]


[[Category:CSharp]]
[[Category:CSharp]]
[[Category:Dot.NET]]
[[Category:Dot.NET]]

Latest revision as of 10:33, 11 September 2016

Links

MSDN Magazine

Treads

Xamarin

Deadlocks

INI FIles

Config Files

Lists

Events

Examples

List<Address> people = new List<Address>();
Address t = new Address();
people.RemoveAt(e.RowIndex);
grdShow.EditIndex = -1;
grdShow.DataSource = people;
grdShow.DataBind();

Working with Images

C-Sharp Image Processing | C-Sharp - Working with Images