diff options
Diffstat (limited to 'csharp/test/Ice/binding/TestI.cs')
-rw-r--r-- | csharp/test/Ice/binding/TestI.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/csharp/test/Ice/binding/TestI.cs b/csharp/test/Ice/binding/TestI.cs new file mode 100644 index 00000000000..a13f1c03d69 --- /dev/null +++ b/csharp/test/Ice/binding/TestI.cs @@ -0,0 +1,19 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. +// +// This copy of Ice is licensed to you under the terms described in the +// ICE_LICENSE file included in this distribution. +// +// ********************************************************************** + +using Test; + +public class TestI : TestIntfDisp_ +{ + public override string getAdapterName(Ice.Current current) + { + return current.adapter.getName(); + } +} + |