C# Collections
Collections: Easy way to work with a group of objects. Types of C# collection classes: System.Collections.Generics System.Collections System.Collections.Concurrent
Collections: Easy way to work with a group of objects. Types of C# collection classes: System.Collections.Generics System.Collections System.Collections.Concurrent
Here is a list of free AI models you can use for programming: Chat GPT: https://chatgpt.com/ Mistral AI: https://chat.mistral.ai/ Claude AI: https://claude.ai/ Cohere: https://coral.cohere.com/ Copilot: https://copilot.microsoft.com/ Perplexity AI: https://www.perplexity.ai/ Inflection pi AI: https://pi.ai/ BlackBox AI: https://www.blackbox.ai/ Gemini: https://gemini.google.com/ Phind: https://www.phind.com/ You: https://you.com/ Julius AI: https://julius.ai/ Ollama: https://ollama.com
En tu código de .net: En el appsettings.json Para que los appsettings se copien, en tu archivo.csproj: Configuración del servicio de logging en el program.cs:
Existen varias maneras de forzar el puerto: 1.- Forzar el puerto al ejecutar la aplicación: 2.- Modificar el archivo appsettings.json O con el formato: O usando una sección Kestrel (que tiene prioridad sobre lo anterior): 3.- Usar variable de entorno: Si queremos usar la variable de entorno en un Dockerfile: Y si el Dockerfile se Leer másForzar el puerto de una aplicación asp.net[…]
Si usamos una API-REST que nos devuelve un Datatable, es necesario deserializar el JSON obtenido. El siguiente ejemplo nos muestra como hacerlo: using System; using System.Data; using System.Net.Http; using System.Threading.Tasks; using Newtonsoft.Json; // You’ll need to install the Newtonsoft.Json NuGet package class Program { static async Task Main() { // Create an instance of HttpClient Leer másC# – Uso de HttpClient para devolver un DataTable[…]