[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/pythonnet/pythonnet/master/src/testing/conversiontest.cs [Back]  [Original]

namespace Python.Test
{
    using System;
    using System.Collections.Generic;

    /// 
    /// Supports unit tests for field access.
    /// 
    public class ConversionTest
    {
        public ConversionTest()
        {
            EnumField = ShortEnum.Zero;
            SpamField = new Spam("spam");
            StringField = "spam";
        }

        public bool BooleanField = false;
        public byte ByteField = 0;
        public sbyte SByteField = 0;
        public char CharField = 'A';
        public short Int16Field = 0;
        public int Int32Field = 0;
        public long Int64Field = 0;
        public ushort UInt16Field = 0;
        public uint UInt32Field = 0;
        public ulong UInt64Field = 0;
        public float SingleField = 0.0F;
        public double DoubleField = 0.0;
        public IntPtr IntPtrField = IntPtr.Zero;
        public UIntPtr UIntPtrField = UIntPtr.Zero;
        public decimal DecimalField = 0;
        public string StringField;
        public ShortEnum EnumField;
        public object ObjectField = null;
        public ISpam SpamField;

        public byte[] ByteArrayField;
        public sbyte[] SByteArrayField;
        public readonly List ListField = new List();

        public T? Echo(T? arg) where T: struct {
            return arg;
        }

    }


    public interface ISpam
    {
        string GetValue();
    }

    public class Spam : ISpam
    {
        private string value;

        public Spam(string value)
        {
            this.value = value;
        }

        public string GetValue()
        {
            return value;
        }
    }

    public class UnicodeString
    {
        public string value = "";

        public string GetString()
        {
            return value;
        }

        public override string ToString()
        {
            return value;
        }
    }

    public class MethodResolutionInt
    {
        public IEnumerable MethodA(ulong address, int size)
        {
            return new byte[10];
        }

        public int MethodA(string dummy, ulong address, int size)
        {
            return 0;
        }
    }
}

Web Proxy Viewer  |  New URL  |  Original Page