PeNet.ExportFunction.ExportFunction C# (CSharp) Method

ExportFunction() public method

Create a new ExportFunction object.
public ExportFunction ( string name, uint address, ushort ordinal ) : System.Text
name string Name of the function.
address uint Address of function.
ordinal ushort Ordinal of the function.
return System.Text
        public ExportFunction(string name, uint address, ushort ordinal)
        {
            Name = name;
            Address = address;
            Ordinal = ordinal;
        }