» Posted by noname at 29/01/2006 03:00:05
» Language: C#
« Previous - Next »
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
using System;
using System.Collections.Generic;
using System.Text;
namespace ClassLibrary1
{
public class Class1 : MarshalByRefObject, IServiceProvider
{
public Class1()
{
//
}
public object GetService(Type serviceType)
{
return "hello";
}
}
}
|
|