DictTable.newmethod(Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the Object class.
protected:
virtual void newmethod(int num1);
protected virtual void newmethod (int num1);
override this.newmethod : int -> unit
Protected Overridable Sub newmethod (num1 As Integer)
Parameters
- num1
- Int32
Remarks
The following example shows how to create an instance of the DictTable class.
DictTable dt;
dt = new DictTable(tablenum(CustTable));
if (!dt)
{
// Take error action.
}