C# SMTP client using CDO
The following code utilize the CDO service of Windows OS to send an email. In my research CDO SMTP client can only support SSL/TLS connection type for using ...
The following code utilize the CDO service of Windows OS to send an email. In my research CDO SMTP client can only support SSL/TLS connection type for using ...
Extended WPF toolkit provide the various UI for building WPF based application. You can find the details from the following link. http://wpftoolkit.codeplex....
WCF has the confusing mechanism for management of instance on RPC call. The following separating shows an example of this situation. If you are more interest...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 class Invoker<T> where T : class { static void Invoke(T invokeClass, string methodName, object[] args) ...
.NET 4.0(vs2010) introduced the dynamic feature to support better integration of dynamic language such as Python, Ruby etc. Example) Without dynamic feature....