Server implementation is released as a no-modify Reference License.
http://weblogs.asp.net/scottgu/archive/2007/01/30/asp-net-ajax-1-0-source-code-released.aspx [[User:Talyian|Talyian]] 20:38, 21 August 2007 (UTC)
== '''Class Syntax''' ==
The ActionScript that defines the class might look like the source code<br />is new to you..
'''Example:''' <br />
<br />class race {<br />
// This is a public property named speed.<br />
public var speed:Number;<br />
// This is a private property named damage.<br />
private var damage:Number;<br />
// This is a constructor function, which initializes <br />
// each race is instance.<br />
public function race( ) {<br />
speed = 100;<br />
damage = 0;<br />
}<br />
// This is a public method named Low( ).<br />
public function Low ( ):Void {<br />
// Code that Low Speed appear 0- 70 Kmph to car...<br />
}<br />
// This is a public method named High( ).<br />
public function High( ):Void {<br />
// Code that High Speed appear above 70 Kmph to car...<br />
}<br />
}
<br />
'''Note:''' See the race class groups related aspects of the program nearlly together. such as speed and damage.., related to race class group with their functions used to move the Low or High Speed..
***** Will Be Continue... soon ...
|