Version Differences for H15

Line 8:
  '''How do I soft-reset the device programmatically from my .NET application?'''    '''How do I soft-reset the device programmatically from my .NET application?''' 
  :In C#:    :In C#: 
- :<code>[DllImport("coredll.dll", SetLastError = true)]   + ::<code>[DllImport("coredll.dll", SetLastError = true)]</code>  
- static extern int SetSystemPowerState(string psState, int StateFlags, int Options);   + ::<code>static extern int SetSystemPowerState(string psState, int StateFlags, int Options);</code>  
       
- const int POWER_FORCE = 4096;   + ::<code>const int POWER_FORCE = 4096;</code>  
- const int POWER_STATE_RESET = 0x00800000;</code>   + ::<code>const int POWER_STATE_RESET = 0x00800000;</code>  
       
  :Then call    :Then call 
- :<code>SetSystemPowerState(null, POWER_STATE_RESET, POWER_FORCE);</code>   + ::<code>SetSystemPowerState(null, POWER_STATE_RESET, POWER_FORCE);</code>