/IronPython_2_0/Src/IronPythonTest/OperatorTest.cs
# · C# · 58 lines · 37 code · 7 blank · 14 comment · 0 complexity · 44aa43acdf27f431aef60829eae8f92e MD5 · raw file
- /* ****************************************************************************
- *
- * Copyright (c) Microsoft Corporation.
- *
- * This source code is subject to terms and conditions of the Microsoft Public License. A
- * copy of the license can be found in the License.html file at the root of this distribution. If
- * you cannot locate the Microsoft Public License, please send an email to
- * ironpy@microsoft.com. By using this source code in any fashion, you are agreeing to be bound
- * by the terms of the Microsoft Public License.
- *
- * You must not remove this notice, or any other, from this software.
- *
- *
- * ***************************************************************************/
- using System; using Microsoft;
-
-
- using System.Runtime.CompilerServices;
- using Microsoft.Runtime.CompilerServices;
-
- using Microsoft.Scripting.Runtime;
-
- [assembly: ExtensionType(typeof(IronPythonTest.ExtendedClass), typeof(IronPythonTest.ExtensionClass))]
- namespace IronPythonTest {
- public class OperatorTest {
- public object Value;
- public string Name;
-
- [SpecialName]
- public object GetBoundMember(string name) {
- Name = name;
- return 42;
- }
- [SpecialName]
- public void SetMember(string name, object value) {
- Name = name;
- Value = value;
- }
- }
-
- public class ExtendedClass {
- public object Value;
- public string Name;
- }
-
- public class ExtensionClass {
- [SpecialName]
- public static object GetBoundMember(ExtendedClass self, string name) {
- self.Name = name;
- return 42;
- }
- [SpecialName]
- public static void SetMember(ExtendedClass self, string name, object value) {
- self.Name = name;
- self.Value = value;
- }
- }
- }