<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[we developers forum]]></title>
		<link>http://forum.wedevs.com/</link>
		<description><![CDATA[The most recent topics at we developers forum.]]></description>
		<lastBuildDate>Wed, 14 Oct 2009 08:03:17 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Convert between C# and Java with CSharpJavaMerger]]></title>
			<link>http://forum.wedevs.com/topic/48/convert-between-c-and-java-with-csharpjavamerger/new/posts/</link>
			<description><![CDATA[CSharpJavaMerger is an open source tool. It provides common interfaces of C# and Java and enables you to write one set of code which can be used both by C# and Java.

Below is a method that can be used in both of C# and Java. In the sample, CString is a class defined in the CSharpJavaMerger Framework. 

[code]public void AddTwoValues()
{
    try
    {
        CString strValue1 = m_mainForm.GetFirstTextBoxValue();
        CString strValue2 = m_mainForm.GetSecondTextBoxValue();

        int iValue1 = strValue1.ToInteger();
        int iValue2 = strValue2.ToInteger();
        int iResult = iValue1 + iValue2;
        CString strShowResult = CString.ValueOf(iResult);
        m_mainForm.ShowResult(strShowResult);
        CString strSaveResult = new CString(strValue1.GetValue() + " + " + strValue2.GetValue() + " = " + strShowResult.GetValue() + "\n");
        m_mainForm.SaveResult(strSaveResult);
    }
    catch (Exception ee)
    {
        m_mainForm.SaveResult(new CString(ee.Message + "\n"));
        m_mainForm.ShowResult(new CString("Error"));
    }
} 
[/code]
More info on CSharpJavaMerger: [url]http://www.kevingao.net/csharp-java-conversion[/url]]]></description>
			<author><![CDATA[dummy@example.com (Tareq)]]></author>
			<pubDate>Wed, 14 Oct 2009 08:03:17 +0000</pubDate>
			<guid>http://forum.wedevs.com/topic/48/convert-between-c-and-java-with-csharpjavamerger/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[how to hook on another process]]></title>
			<link>http://forum.wedevs.com/topic/44/how-to-hook-on-another-process/new/posts/</link>
			<description><![CDATA[any one know about how to hook another process using C#.NET

for example 

i wana create an win app that hook or track another process or exe file that when the exe file opend or closed. My app will store that info.

tnkz]]></description>
			<author><![CDATA[dummy@example.com (nsmgr8)]]></author>
			<pubDate>Wed, 15 Apr 2009 13:45:58 +0000</pubDate>
			<guid>http://forum.wedevs.com/topic/44/how-to-hook-on-another-process/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[How To Convert One To Another Data Type]]></title>
			<link>http://forum.wedevs.com/topic/23/how-to-convert-one-to-another-data-type/new/posts/</link>
			<description><![CDATA[Just an intorduction for converting one data type to another data type]]></description>
			<author><![CDATA[dummy@example.com (codemaster)]]></author>
			<pubDate>Fri, 03 Apr 2009 09:20:54 +0000</pubDate>
			<guid>http://forum.wedevs.com/topic/23/how-to-convert-one-to-another-data-type/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Ask Me About C#.Net]]></title>
			<link>http://forum.wedevs.com/topic/13/ask-me-about-cnet/new/posts/</link>
			<description><![CDATA[Freeely Ask Me About C#.net]]></description>
			<author><![CDATA[dummy@example.com (codemaster)]]></author>
			<pubDate>Fri, 02 Jan 2009 15:05:38 +0000</pubDate>
			<guid>http://forum.wedevs.com/topic/13/ask-me-about-cnet/new/posts/</guid>
		</item>
	</channel>
</rss>
