• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar

Dotnet Stuff

  • Home
  • Articles
  • Tutorials
  • Forums
  • Career Advice
  • Jobs
  • .NET FAQs
  • News
  • Privacy Policy

Serializing and Deserializing JSON using Jsonconvertor in C#

JSON (JavaScript Object Notation) is a commonly used data exchange format that facilitates data exchange between web applications and servers. JSON is a human-readable and machine-readable format that is easy to read and write. In C#, the Newtonsoft.Json Nuget package provides the JsonConvert class, which can be used to serialize and deserialize JSON. This makes […]

What is Interface Segregation Principle (ISP) in SOLID Design Principles?

The Interface Segregation Principle (ISP) is one of the SOLID principles of object-oriented design. The interface Segregation Principle states that a client should not be forced to depend on methods that it does not use. In other words, the interface Segregation Principle says, a class should only expose the methods that are relevant to its […]

Difference Between Const and ReadOnly in C#

In C#, const is a keyword that declares a constant value that is computed at compile-time and can never be changed while readonly is a keyword that declares a value that can be assigned only once and can be determined at run-time. while readonly s a keyword that declares a value that can be assigned only once and can be determined at run-time.

Performance optimization in C#

C# Performance optimization 1) Profiling 2) Memory Management 3) Precompilation 4)Use Sealed classes 5) Parallel and Concurrent Programming …

How to be an Efficient C# Coder?

Stay up to date with the latest C# versions and developments in C# and related technologies, such as the .NET framework and Visual Studio. Participate in online C# communities, and forums and read blogs and watch relevant videos to stay up-to-date and learn from other experienced developers.

Features of C#.NET

Major features of C# are Object-oriented programming, Strong Types, Standard Library, Properties, Events & Delegates, Linq, etc

  • Go to page 1
  • Go to page 2
  • Go to page 3
  • Interim pages omitted …
  • Go to page 9
  • Go to Next Page »

Primary Sidebar

Recent Posts

  • OWIN Authentication in .NET Core
  • Serializing and Deserializing JSON using Jsonconvertor in C#
  • What is CAP Theorem? | What is Brewer’s Theorem?
  • SOLID -Basic Software Design Principles
  • What is Interface Segregation Principle (ISP) in SOLID Design Principles?
  • What is Single Responsibility Principle (SRP) in SOLID Design Priciples?
  • What is the Liskov Substitution Principle(LSP) in SOLID Design Principles?
  • Dependency inversion principle(DIP) in SOLID Design
  • What is the Open Closed Principle in SOLID Design Principles?
  • What is the Difference Between Database Partitioning and Sharding?

Recent Forum Topics

  • What is the Difference Between IEnumerable and IQueryable in C#
  • How to remove Header of the XML file in C#?
  • What is DBMS?
  • What is RDBMS?
  • What is asp net framework ?

© Copywright 2017 Dotnetstuffs All Rights Reserved