Best practice for organizing multiple classes (new to programming)

This page summarizes the projects mentioned and recommended in the original post on /r/csharp

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  • Json.NET

    Json.NET is a popular high-performance JSON framework for .NET

  • Common convention (with rare exceptions) is to name your project the same as your assembly name and default namespace. For example, Newtonsoft.Json.csproj makes an assembly called Newtonsoft.Json.dll with the default namespace of Newtonsoft.Json. Inside that project directory (which usually also has the same name), subdirectories would match namespaces nested inside the default, like in that example there is a folder named Serialization which contains classes that are all in the namespace Newtonsoft.Json.Serialization. Classes in this nested namespace can automatically access classes defined in parent namespaces without extra using statements, like how JsonProperty.cs can reference JsonConverter from the Newtonsoft.Json namespace, but it needs a using statement at the top of the file in order to access classes from the sibling namespace Newtonsoft.Json.Utilities

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • stopDoingJson

    3 projects | /r/ProgrammerHumor | 9 Dec 2023
  • Removing default values while serializing using Newtonsoft.Json

    1 project | /r/dotnet | 7 Jun 2023
  • what library do i need to include for this json deserializer? (or how do i find what libs i need to include in general?)

    1 project | /r/csharp | 3 May 2023
  • How do you normally store large raw json string into a variable in your code in C#?

    1 project | /r/csharp | 8 Mar 2023
  • market data GET HttpClient json requests vs net sdk wrapper functions

    1 project | /r/algotrading | 24 Dec 2022