My question is so that the characters are used = > in C #, I've seen it in a method to access the device's light sensor. This is the method
private void _lightSensor_ReadingChanged(LightSensor sender, LightSensorReadingChangedEventArgs args)
{
_dispatcher.RunAsync(CoreDispatcherPriority.Normal, () =>
{
Lux = args.Reading.IlluminanceInLux;
});
Debug.WriteLine("Lux: {0}", Lux);
}
Thank you.