variableclient.Variable.Variable C# (CSharp) Method

Variable() public method

public Variable ( Type type, String name ) : System
type System.Type
name String
return System
        public Variable(Type type, String name)
        {
            this.type = type;
            this.name = name;

            dataPointer = Marshal.AllocHGlobal(Marshal.SizeOf(type));
        }