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 =
Inspirageek Episode 1 Posted by Inspirageek in Episodes on 04 27th, 2009 | one response Alternate video link: http://blip.tv/file/2051581/ Show Notes Technology Section Josh talks about his love for jQuery. He also demos the draggable+sortable effect and accordion widget from the jQuery website. Tom mentions new twitter client for the Mac – Tweetie and shares his experience with the “new” modifier from CSharp. Tom and Josh talk about the new twitter “ Fail Whale” and Flip minoHD c
CSharp For Programmers | 521 Mb Contents: 1.1 Introduction 1.1.1 Course Introduction 1.1.2 Course Prerequisites 1.1.3 Object-oriented Programming 1.1.4 Object-oriented Programming Concepts
CSharp For Programmers | 521 Mb Contents: 1.1 Introduction 1.1.1 Course Introduction 1.1.2 Course Prerequisites 1.1.3 Object-oriented Programming 1.1.4 Object-oriented Programming Concepts
I ran into a funny issue recently using Fluent NHibernate. Saw that it was storing enums as Strings in the database. I’m sure there was a reason, but I didn’t understand why. I would prefer to store them as integers. Hacking around in Fluent NHibernate I found the following: csharp Line number On/Off | Show/Hide | Select all Map ( x => x. Property ) . CustomType ( ) ; Code is hidden, SHOW It had a slightly different name in the previous versions (I think it