C and C++ Programming Resources

Convert between C# and Java with CSharpJavaMerger

Discuss .NET & C# programming, The Common Language Runtime (CLR), Intermediate Language (IL), Assemblies, .NET Classes and the role of C# in .NET Applications. Windows applications in .NET, Windows Forms, Windows Controls, and Custom Controls.

Convert between C# and Java with CSharpJavaMerger

Postby sindy55 » Thu Sep 10, 2009 7:30 am

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.

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"));
}
}

More info on CSharpJavaMerger: http://www.kevingao.net/csharp-java-conversion
sindy55
 
Posts: 1
Joined: Thu Sep 10, 2009 7:28 am

Re: Convert between C# and Java with CSharpJavaMerger

Postby debrah » Thu Jan 21, 2010 7:09 am

Thanks for the information.
debrah
 
Posts: 2
Joined: Thu Jan 21, 2010 7:02 am


Return to .NET and C# Programming

Who is online

Users browsing this forum: No registered users and 0 guests

cron