Registry Value Last Modified Time in .NET

  • Thread starter Thread starter Kevin_E
  • Start date Start date
K

Kevin_E

I am not seeing anything in the .NET classes that allows one to find the Last
Modified time of the registry values. Am I missing something? Is MS
deprecating this aspect of the Registry?
 
Kevin,

I haven't seen anything that indicates that they are depreciating it, it
just isn't exposed through the framework. You can get the handle for the
key and call the RegQueryInfoKey API function yourself.
 
Back
Top