Wednesday 26 January 2022

Leptop battery stuck at 99% DELL leptop

 If you having issue with DELL leptop stuck at 99% , please check report with below commands.

powercfg /batteryreport /output "C:\bettery-report.html"

If still if you face challenge then upgrade BIOS drivers. and then check, or else your battery performance might be impacted. 

Tuesday 25 January 2022

Working with ExpandoObject in c# C-sharp

 Hello all,

Some of coolest topics , I came across, ExpandoObject in C#

dynamic dynamicObject = new ExpandoObject();


While addiing into code base, found compile time error, 

Error CS0656 Missing compiler required member 'Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo.Create'

To over come from this, You need to add a reference to the DLL Microsoft.CSharp.dll

It will resolve your compile time error, and you can take benifitws of ExpandoObject.