Difference between revisions of "CSharp Notes"

From PeformIQ Upgrade
Jump to navigation Jump to search
Line 7: Line 7:
==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

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