Difference between revisions of "CSharp Notes"

From PeformIQ Upgrade
Jump to navigation Jump to search
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/


==Treads==
==Treads==

Revision as of 10:30, 11 September 2016

Links

Treads

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