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