HESSIAN을 이용한 JAVA와 .NET 간의 데이터 교환 - hessian binary web service protocol
자바쪽 WAR
C#쪽 묶음...
디버그용도로 단순 하게만 만든 샘플...
- 기록용...
참고 :
http://hessian.caucho.com/
'Computer_IT > C#' 카테고리의 다른 글
[C#] Windows에서 사용가능한 폰트 이름 가져오기 (0) | 2008.05.21 |
---|---|
오직 하나의 instance / 프로그램 만 실행 (0) | 2008.03.21 |
Delegate(델리게이트) Example 1 (0) | 2007.09.11 |
[C#] Windows에서 사용가능한 폰트 이름 가져오기
foreach (FontFamily font in fonts)
Console.WriteLine(font.Name);
'Computer_IT > C#' 카테고리의 다른 글
HESSIAN을 이용한 JAVA와 .NET 간의 데이터 교환 - hessian binary web service protocol (0) | 2013.01.11 |
---|---|
오직 하나의 instance / 프로그램 만 실행 (0) | 2008.03.21 |
Delegate(델리게이트) Example 1 (0) | 2007.09.11 |
오직 하나의 instance / 프로그램 만 실행
힌트 URL : 데브피아 - http://www.devpia.com/MAEUL/Contents/Detail.aspx?BoardID=217&MAEULNO=8&no=25391&page=1
참고 URL : MSDN - http://msdn2.microsoft.com/ko-kr/library/system.threading.mutex(en-us).aspx
예제
'Computer_IT > C#' 카테고리의 다른 글
HESSIAN을 이용한 JAVA와 .NET 간의 데이터 교환 - hessian binary web service protocol (0) | 2013.01.11 |
---|---|
[C#] Windows에서 사용가능한 폰트 이름 가져오기 (0) | 2008.05.21 |
Delegate(델리게이트) Example 1 (0) | 2007.09.11 |
Delegate(델리게이트) Example 1
using System;
using System.Collections.Generic;
using System.Text;
namespace DelegateExample
{
public class Calc
{
public static void Sum(int x, int y)
{
Console.WriteLine("{0} + {1} = {2}", x, y, (x + y));
}
public static void Mul(int x, int y)
{
Console.WriteLine("{0} * {1} = {2}", x, y, (x * y));
}
public static void Div(int x, int y)
{
Console.WriteLine("{0} / {1} = {2}", x, y, (x / y));
}
public static void Sub(int x, int y)
{
Console.WriteLine("{0} - {1} = {2}", x, y, (x - y));
}
}
public class MainClass
{
public delegate void CalDelegate(int a, int b);
public static void Main(string[] args)
{
CalDelegate caldelegate = new CalDelegate(Calc.Sum);
caldelegate += new CalDelegate(Calc.Sub);
caldelegate += new CalDelegate(Calc.Mul);
caldelegate += new CalDelegate(Calc.Div);
caldelegate(3, 5);
}
}
}
실행결과
'Computer_IT > C#' 카테고리의 다른 글
HESSIAN을 이용한 JAVA와 .NET 간의 데이터 교환 - hessian binary web service protocol (0) | 2013.01.11 |
---|---|
[C#] Windows에서 사용가능한 폰트 이름 가져오기 (0) | 2008.05.21 |
오직 하나의 instance / 프로그램 만 실행 (0) | 2008.03.21 |