News:

Choose a design and let our professionals help you build a successful website   - ITAcumens

Main Menu

Value Type Sample (Declaring a Point Type as a Value Type)

Started by sukishan, Jul 14, 2009, 04:37 PM

Previous topic - Next topic

sukishan

Value Type Sample (Declaring a Point Type as a Value Type) 

In this sample, a "Point" type is declared as a value type. The value type is then instantiated, methods are called on it, and it is passed to a method as a parameter.

Security Note 
This sample code is provided to illustrate a concept and should not be used in applications or Web sites, as it may not illustrate the safest coding practices. Microsoft assumes no liability for incidental or consequential damages should the sample code be used for purposes other than as intended.


Building and Running the Sample

To open the sample file in Solution Explorer

Click Download Sample.

The File Download message box appears.

Click Open, and on the left column of the zip folder window, click Extract all files.

The Extraction Wizard opens.

Click Next. You can change the directory that the files will be extracted to, and then click Next again.

Make sure that the Show extracted files check box is selected, and click Finish.

Double-click the sample's .sln file.

The sample solution is displayed in Solution Explorer. You might get a security warning that says the solution location is not trusted. Click OK to continue.

To build and run this sample

In Solution Explorer, click Build Solution, or press CTRL+SHIFT+B.

-or-

From the command line, type BUILD.bat.

Note 
For more information, see Building from the Command Line (Visual J#).


On the Debug menu, click Start.

-or-

From the command line, type app.

Examine the output. Expected output:

The Point type is derived from System.ValueType
Does p1 equal p2: true
Does p1 equal p2: false
A good beginning makes a good ending