<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>C Training</title>
	<link>http://www.c-training.nl</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Tue, 21 Feb 2012 07:12:24 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.2.1" -->
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />

	<item>
		<title>Step By Step Procedure to Consume a WebService</title>
		<description><![CDATA[1.Create a webservice and click browse on its .asmx to see the url of the asmx file 2.Open Asp.net application and Right click on the Project Select AddWebreference and give the above generated asmx url , click on Go. 3.Change the Default WebReference name to &#8220;Palle&#8221; Click on Add Reference.           [...]]]></description>
		<link>http://www.c-training.nl/c-training/step-by-step-procedure-to-consume-a-webservice/</link>
			</item>
	<item>
		<title>Difference between == and Object.Equals Method in C#</title>
		<description><![CDATA[protected void Page_Load(object sender, EventArgs e) { object s1 = &#8220;abc&#8221;; object s2 = &#8220;abc&#8221;; if (s1 == s2) { Response.Write(&#8220;value of s1 and s2 are equal&#8221;); } else if(s1.Equals(s2)) { Response.Write(&#8220;Address of s1 and s2 are equal&#8221;); } /*************************************************************** * 1.==compares values of the variables. * 2.Object.Eqals Method compares address of the variables * [...]]]></description>
		<link>http://www.c-training.nl/c-training/difference-between-and-object-equals-method-in-c/</link>
			</item>
	<item>
		<title>is and as operators in C#</title>
		<description><![CDATA[is Operator: is operator Checks if an object is compatible with a given type An is expression evaluates to true if the provided expression is non-null, and the provided object     can  be cast to the provided type without causing  an exception to be thrown. as Operator: The as operator is used to perform conversions between [...]]]></description>
		<link>http://www.c-training.nl/c-training/is-and-as-operators-in-c/</link>
			</item>
	<item>
		<title>Ternary Operators in C#</title>
		<description><![CDATA[Ternary operators can be use full when we have only one simple if else condition. Ternary Operator Syntax: &#160; condition ? first_expression : second_expression; Ex: public class TernaryEx { public int GetBigNum(int a, int b) { return a &#038;gt; b ? a : b; //in the above syntax if a is greater than b //the above expression [...]]]></description>
		<link>http://www.c-training.nl/c-training/ternary-operators-in-c/</link>
			</item>
	<item>
		<title>Custom Exceptions in C#</title>
		<description><![CDATA[In C# all Custom Exception should be inherited from a class called as ApplicationException. In the below sample i created a Custom Exception class called CustSalException. I am raising an Exception when some creates an object of Salary class by passing salary value less than 5000. Please see the below code for the sample. In the code we [...]]]></description>
		<link>http://www.c-training.nl/c-training/custom-exceptions-in-c/</link>
			</item>
	<item>
		<title>Dotnet supported platforms</title>
		<description><![CDATA[Dotnet is supported in the below platforms. Windows 98 or later versions Linux and Mac OS ( Linux and Mac are supported by using Dotnet MONO Project) Note: Sign Up For .NET Training Dotnet supported platforms is a post from: techpalle.com Dotnet supported platforms is a post from: techpalle.com Tags: Training Dotnet]]></description>
		<link>http://www.c-training.nl/c-training/dotnet-supported-platforms/</link>
			</item>
	<item>
		<title>Computer Forensics Training Event: CHFI v8 Launch</title>
		<description><![CDATA[The EC-Council has made strides to improve upon their flagship forensics certification, the CHFI, by upgrading their content and courseware. The new CHFI is now the Version 8 (v8). The CHFI v8 certification training class is being launched globally in an exclusive setting to a handful of training centers around the world. There are only [...]]]></description>
		<link>http://www.c-training.nl/computer-training/computer-forensics-training-event-chfi-v8-launch/</link>
			</item>
	<item>
		<title>How to debug Android program.</title>
		<description><![CDATA[How to debug android program Go to Run -&#062; debug configuration. Select your application and press debug. [or] you can right click on your project -&#062; debug as -&#062; Android application. Before running in debug mode, set break points where all it may be needed for your code. To set break points, go to the [...]]]></description>
		<link>http://www.c-training.nl/c-training/how-to-debug-android-program/</link>
			</item>
	<item>
		<title>Types of JIT Compilers in .NET</title>
		<description><![CDATA[There are 3 types of .Net Compilers present in .Net Framework. Pre-JIT (Compiles entire code into native code at one stretch . In .Net it is called as Ngen.exe) Ecno-JIT (Compiles code part by part freeing when required) Normal JIT (Compiles only that part of code when called and places in cache) Types of JIT [...]]]></description>
		<link>http://www.c-training.nl/c-training/types-of-jit-compilers-in-net/</link>
			</item>
	<item>
		<title>Where the CISSP Certification Stands Now That 2012 is Here</title>
		<description><![CDATA[As 2012 begins, the Certified Information Systems Security Professional (CISSP) certification is still the worldwide standard in information assurance certification, and that is no exaggeration. No other advanced certification comes close to its level of trust and acceptance. Over 75,000 professional in more than 130 countries have relied on their CISSP credentials for getting and [...]]]></description>
		<link>http://www.c-training.nl/computer-training/where-the-cissp-certification-stands-now-that-2012-is-here/</link>
			</item>
</channel>
</rss>

