.net
-
TPL Task Parrallel Library .net 4.0 parallel programming multi thread threading task queue user work item
References http://msdn.microsoft.com/en-us/library/dd460705.aspx (added 20121023 good comprehensive resource with illustrative examples) http://www.codeproject.com/Articles/362996/Multi-core-programming-using-Task-Parallel-Library http://www.codeproject.com/KB/threads/ParallelTasks.aspx Optimize Managed Code For Multi-Core Machines http://msdn.microsoft.com/en-us/magazine/cc163340.aspx good blog http://www.codethinked.com/net-40-and-systemthreadingtasks queueuserworkitem http://msdn.microsoft.com/en-us/library/4yd16hza.aspx threadpool class http://msdn.microsoft.com/en-us/library/y5htx827.aspx task class http://msdn.microsoft.com/en-us/library/system.threading.tasks.task.aspx task parrallelism http://msdn.microsoft.com/en-us/library/dd537609.aspx How to: Use Parallel.Invoke to Execute Parallel… Continue reading
-
Custom DAL Class SQL ORM ASP .NET
(common.DataObject may be of your choosing or may simply replace with dynamic) Continue reading
-
Custom AWS S3 Helper Class AWSSDK Wrapper
Implements some very commonly used AWS S3 functionality. (need to merge with my other AWS wrapper classes, Route53, EC2, etc) Continue reading
-
Custom URLRewriting with XML and Global.asax
utilizes my custom DocParser class here https://ronniediaz.com/2013/08/23/parse-xml-to-dynamic-expandoobject-c-net-4-0/ rewrite.xml examples Continue reading
-
Common functions asp .net static shared library
references custom encryption class here https://ronniediaz.com/2011/01/13/quick-net-encryption-reference/ Continue reading
-
Could not load type System.ServiceModel.Activation.HttpModule’ from assembly ‘System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=
If you already have .Net 4.0 installed and install a program that brings in an earlier version of .Net, or manually install an earlier version of .Net afterwards, you may get an exception page that matches the title of this… Continue reading
-
asp .net repeater itemcommand command name common repeater control item operations
This is only one small snippet illustrating some functionality. I will add to this blog from my previous usage with Repeater control over time or per request. In many deployments, I prefer to use Repeater or ListView rather than Grids.… Continue reading
-
directory info get files show directories C# .Net
There is sometimes a misunderstanding between a “file” and a “folder” in filesystems. In C# .Net the following is often used to list all “files” in a folder. However, even though you can specify to search containing subdirectories, the above… Continue reading