Vector Constructor (Double, Double)
.NET Framework (current version)
Initializes a new instance of the Vector structure.
Assembly: WindowsBase (in WindowsBase.dll)
The following example shows how to create two vectors and add them together.
private Vector addTwoVectorsExample() { // Create two Vector structures. Vector vector1 = new Vector(20, 30); Vector vector2 = new Vector(45, 70); Vector vectorResult = new Vector(); // Add the vectors together. // vectorResult is equal to (65, 100). vectorResult = Vector.Add(vector1, vector2); return vectorResult; }
.NET Framework
Available since 3.0
Available since 3.0
Show: