Worüber bloggt Österreich? In der Blogothek könnt ihr die aktuellsten Beiträge der Österreichischen Blogs durchsuchen. Derzeit befinden sich Blogartikel zum Thema csharp in der Blogothek, die natürlich immer direkt auf eure Blogs verlinken. Es sollte euch also mehr Traffic & neue Leser bringen! Stöbern und Neues entdecken, in der Blogheimat Blogothek!
Möchtet ihr nicht hier erscheinen? Einfach unter "Blog verwalten" die Blogothek Sichtbarkeit auf nein stellen.
Blogbeiträge zum Thema csharp

.NET Core at the Thrive Conference in Slovenia

This time the Thrive Conference in Slovenia celebrates 10 years! This time the conference is located in Postojna, at a hotel located at the Postojna cave. The 10 years and the cave shouldn’t …
.NET CoreBlazorConferenceCSharpWPFXAMLCSharp8dotnetcorePostojnaSloveniaThriveWebAssembly
Azure Functions with Dependency Injection

Azure Functions got some improvements in the last months. Now it’s no longer necessary to create static methods, instance methods can be used, and dependency injection using Microsoft.Extensi…
.NET CoreAzureAzure Functionsdependency injectionDIEF Core
Click the Azure IoT Button – Part 1

Microsoft Azure offers great features for IoT devices. A simple device is the Azure IoT button. This button is – using a wireless network – connected to the Azure IoT hub. Clicking the …
.NET CoreAzureAzure FunctionAzure IoT HubIOT
Relations with Azure Cosmos DB and EF Core

After some first experiments using the EF Core provider with Azure Cosmos DB, with the second article on EF Core with Azure Cosmos DB has a focus on associations. With relational databases, EF Core…
AzureEntity Framework CoreCosmos DBEF CoreEF Core 3.0
Explicit Interface Implementation with C#

With C#, interfaces can be implemented implicitly or explicitly. With implicit interface implementations, the members of the interface are public in the class. With explicit implementations, in the…
ClassicCSharp
Using, using, using with C# 8

C# has different meanings for the using keyword. One is the using directive to import types from namespaces, and to create aliases to types. The second meaning is the using statement as a convenien…
CSharpCSharp8IDisposableusingusing declaration
Choosing the right ASP.NET Core technology

.NET Core 3.0 doesn’t make it easier to choose the correct Web technology creating .NET applications. Some more options have been added to select from, e.g. ASP.NET Razor Components. Did you …
.NET CoreASP.NET CoreBlazordotnetcoreGRPCMVCRazorRazorComponentsRazorPagesRESTWebAPIWebAssemblyWorker
Hosting DI Container with .NET Core 3.0

ASP.NET Core included the WebHost class that was used in the Main method to startup everything up – including the dependency injection container. With Non-ASP.NET Core applications I used the…
.NET CoreArchitectureConfigurationdependency injectiondotnetcorehostingLogging
Async Streams with C# 8

One of the many great features of C# 8 is async streams. Before C# 8, you could use the await keyword only to get a single result – when the asynchronous method returns the result. This chang…
CSharpCSharp8