Serialization and Deserialization in C#
What is Serialization in C#? Serialization in C# is the process of bringing an object into a form that it can be written on stream. It’s the process of converting the object into a form…
What is Serialization in C#? Serialization in C# is the process of bringing an object into a form that it can be written on stream. It’s the process of converting the object into a form…
We all understand that functions in C# have a function signature, function body and a return type. The signature comprises the parameters sent to the function, the function body is the lines of code executed…
What is the ASP.NET Core? ASP.NET Core is not an upgraded version of ASP.NET. ASP.NET Core is completely rewriting that works with .net Core framework. It is much faster, configurable, modular, scalable, extensible, and cross-platform support.…
What is MVC (Model View Controller)? MVC is an architectural pattern which separates the representation and user interaction. It’s divided into three broader sections, Model, View, and Controller. Below is how each one of them…
1. What is C#? C# is an object-oriented, type-safe, and managed language that is compiled by .Net framework to generate Microsoft Intermediate Language. Type Safe: A type-safe language is one where the only operations that…
File Commands ls Directory listing ls -al Formatted listing with hidden files ls -lt Sorting the Formatted listing by time modification cd dir Change directory to dir cd Change to home directory pwd Show current…
Solid principals are some best practices that can be followed in software development and also called Design Principal. S: Single Responsibility Principal (SRP), SRP means that every object will have a single responsibility and area…
Office 365: Connect-MsolService (To connect with office 365) Get-MsolUser -EnabledFilter EnabledOnly | select DisplayName,UserPrincipalName, LastPasswordChangeTimeStamp,isLicensed | Export-CSV C:\Users\Admin\Desktop\NRateBoard\abc1fev.csv (To Export the file) AD: Login to the AD Server Open Poweshell and use this command. Get-ADUser…