variableclient.Variable.Variable C# (CSharp) 메소드

Variable() 공개 메소드

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

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