API listing follows standard diff formatting. Lines preceded by a '+' are additions and a '-' indicates removal.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project Sdk="Microsoft.NET.Sdk.Web"> | |
<PropertyGroup> | |
<TargetFramework>net8.0</TargetFramework> | |
<Nullable>enable</Nullable> | |
<ImplicitUsings>enable</ImplicitUsings> | |
<InvariantGlobalization>true</InvariantGlobalization> | |
</PropertyGroup> | |
<ItemGroup> |
El primer paso para realizar la migracion es el autenticarse con microsoft por primera vez, para poder resetear el password de tu cuenta.
Para eso, hay que:
- Abrir un navegador de internet, e ir a la pagina https://outlook.com/owa/bustextil.com
- Escrbir tu usuario. Tu usuario es tu correo actual que termina en @bustextil.com, por ejemplo:
[email protected]
- Dar click en el boton de
Siguiente
oNext
.
BenchmarkDotNet=v0.13.1.1741-nightly, OS=Windows 11 (10.0.22000.593/21H2)
Intel Core i7-8700 CPU 3.20GHz (Coffee Lake), 1 CPU, 12 logical and 6 physical cores
.NET SDK=7.0.100-preview.2.22110.1
[Host] : .NET 7.0.0 (7.0.22.10302), X64 RyuJIT
Job-PXGVYL : .NET 7.0.0 (42.42.42.42424), X64 RyuJIT
Job-SNEXQP : .NET 7.0.0 (42.42.42.42424), X64 RyuJIT
PowerPlanMode=00000000-0000-0000-0000-000000000000 Arguments=/p:DebugType=portable,-bl:benchmarkdotnet.binlog IterationTime=250.0000 ms
BenchmarkDotNet=v0.13.1.1702-nightly, OS=Windows 11 (10.0.22000.527/21H2)
Intel Core i7-8700 CPU 3.20GHz (Coffee Lake), 1 CPU, 12 logical and 6 physical cores
.NET SDK=7.0.100-preview.2.22110.1
[Host] : .NET 7.0.0 (7.0.22.10302), X64 RyuJIT
Job-IXUFSP : .NET 7.0.0 (42.42.42.42424), X64 RyuJIT
Job-OTMQBB : .NET 7.0.0 (42.42.42.42424), X64 RyuJIT
PowerPlanMode=00000000-0000-0000-0000-000000000000 Arguments=/p:DebugType=portable,-bl:benchmarkdotnet.binlog IterationTime=250.0000 ms
Contrary to the obvious, Regex type itself doesn't know how to match a pattern with a given input. But it does have a factory which aids in producing objects which do know how to do this.
namespace System.Text.RegularExpressions
{
public class Regex
{
protected internal RegexRunnerFactory factory;
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Text.Json; | |
using System.Text.Json.Serialization; | |
namespace Sample | |
{ | |
public class EventHubPosition | |
{ | |
public string Offset { get; set; } |
- .NET Framework 4.8 + .NET Core is future of .NET - https://devblogs.microsoft.com/dotnet/net-core-is-the-future-of-net/
- WCF server - https://github.com/CoreWCF/CoreWCF (part of .NET Foundation)
- WF (Workflow) - https://github.com/UiPath/corewf
- WebForms - Blazor or DotVVM - https://www.dotvvm.com/ (part of .NET Foundation)
- APIs new in Core and ported to Core - dotnet/announcements#130
- .NET schedule
- Schedule table - https://github.com/dotnet/core/blob/master/roadmap.md or
- As pic - https://devblogs.microsoft.com/dotnet/introducing-net-5/
.NET Foundation:
-
Why in
MetadataDb
there's a byte array instead od Memory / Span?- overhead? -->
Memory
is supposed to be more efficient - limited space on stack? --> it's
Memory
notSpan
- overhead? -->
-
What does the new API have from what Json.NET API has?
- Json Schema Validation - it is paid in Json.NET?
-
other important features:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Licensed to the .NET Foundation under one or more agreements. | |
// The .NET Foundation licenses this file to you under the MIT license. | |
// See the LICENSE file in the project root for more information. | |
using System; | |
using System.Buffers.Binary; | |
using System.Device.Gpio; | |
using System.Device.I2c; | |
using System.Device.I2c.Drivers; | |
using System.Device.Spi; |
NewerOlder