8 instantiations of Lazy
System.Windows.Input.Manipulations (8)
System\Windows\Input\Manipulations\ManipulationVelocities2D.cs (8)
91this.linearVelocityX = new Lazy<float>(linearVelocityX); 92this.linearVelocityY = new Lazy<float>(linearVelocityY); 93this.angularVelocity = new Lazy<float>(angularVelocity); 94this.expansionVelocity = new Lazy<float>(expansionVelocity); 115this.linearVelocityX = new Lazy<float>(getLinearVelocityX); 116this.linearVelocityY = new Lazy<float>(getLinearVelocityY); 117this.angularVelocity = new Lazy<float>(getAngularVelocity); 118this.expansionVelocity = new Lazy<float>(getExpansionVelocity);
4 references to Lazy
System.Windows.Input.Manipulations (4)
System\Windows\Input\Manipulations\ManipulationVelocities2D.cs (4)
21private readonly Lazy<float> linearVelocityX; 22private readonly Lazy<float> linearVelocityY; 23private readonly Lazy<float> angularVelocity; 24private readonly Lazy<float> expansionVelocity;