Home
Archive
Contact
Search results for 'MALAYSIA 4D, [OFFICIAL | winbox-login.com] , MALAYSIA 4D, FREE 10, [OFFICIAL | winbox-login.com] cE'
What’s New in C# 10: New Possibilities for Validation and Logging Methods
"This is part of a series on the new features introduced with C# 10.From C# 10 we can make use of the [CallerArgumentExpression] attribute.This attribute can be applied to a parameter to get informatio ..."
Type
: Post
Tags
: cs10newseries, c#, .net, .net core, C#10
http://dontcodetired.com/blog/post/Whats-New-in-C-10-New-Possibilities-for-Validation-and-Logging-Methods
Writing Azure Functions with Function Monkey: Validation
"Function Monkey is a framework to define Azure Functions in a fluent way as opposed to using binding attributes on function methods. Other Function Monkey articles: Creating Azure Functions with Func ..."
Type
: Post
Tags
: azure, azure functions, serverless, .net, C#
http://dontcodetired.com/blog/post/Writing-Azure-Functions-with-Function-Monkey-Validation
Adding Tuple Support to .NET Classes in C#
Edit: Updated to improve clarity (thanks to Paulo in the comments for helping to improve his article
Type
: Post
Tags
: C#, .net, .net core
http://dontcodetired.com/blog/post/Adding-Tuple-Support-to-NET-Classes-in-C
On Showing Up
"So I just listened to episode 1000 of .NET Rocks. I’ve been listening to this podcast for many years, through biting snow-covered walks in England to the cosseted comfort of an air-conditioned car in ..."
Type
: Post
Tags
: profession, personal development
http://dontcodetired.com/blog/post/On-Showing-Up
10 Pluralsight Courses–A Milestone
"I just had my 10th Pluralsight course released; Building .NET Console Applications in C# teaches how to create well-designed, fully-featured .NET Console applications. When I hit 7 courses I wrote Thr ..."
Type
: Post
Tags
: pluralsight courses, profession, personal development
http://dontcodetired.com/blog/post/10-Pluralsight-Coursese28093A-Milestone
Databinding Conversions Using Functions in UWP XAML Apps
"When using compiled data bindings using the x:Bind syntax in UWP apps, as an alternative to using an IValueConverter, a function can instead be defined. This means that whenever a value needs converti ..."
Type
: Post
Tags
: c#, UWP, xaml
http://dontcodetired.com/blog/post/Databinding-Conversions-Using-Functions-in-UWP-XAML-Apps
Creating a Tweet Buffer with Azure Queues and Microsoft Flow
There are apps and services that allow the scheduling or buffering of the sending of Tweets. Using t
Type
: Post
Tags
: microsoft flow, azure, azure functions, serverless
http://dontcodetired.com/blog/post/Creating-a-Tweet-Buffer-with-Azure-Queues-and-Microsoft-Flow
Anatomy of Type: Baseline and x-height
"The baseline is like an imaginary invisible line upon which letters appear to sit. [more] A typeface’s x-height, as its name suggests, is the height of the lowercase x measured from the baseline. The ..."
Type
: Post
Tags
: design, typography, anatomy of type
http://dontcodetired.com/blog/post/Anatomy-of-Type-Baseline-and-x-height
Using C# Keywords for Variable Names
It’s possible to use C# keywords for variable names, etc. For example if we wanted a variable
Type
: Post
Tags
: c# tips, c#, .net
http://dontcodetired.com/blog/post/Using-C-Keywords-for-Variable-Names
Prevent Procrastination With This One Simple Tip
"I’m currently reading Limitless by Jim Kwik and there’s an excellent method that he outlines if you struggle with getting stuff done due to procrastination. So I though I’d share. Generally I am ..."
Type
: Post
Tags
: career development, personal development, productivity
http://dontcodetired.com/blog/post/Prevent-Procrastination-With-This-One-Simple-Tip
Creating Inline Data Driven Tests in xUnit
xUnit.net allows the creation of data-driven tests. These kind of tests get their test data from out
Type
: Post
Tags
: xunit, .net, c#, testing, tdd, quality
http://dontcodetired.com/blog/post/Creating-Inline-Data-Driven-Tests-in-xUnit
Design is Not Adornment
"Sometimes design (and designers) are thought of as the people that make stuff look pretty. While aesthetics is a part of design, it’s not its sole function. Design is problem solving When aesthetic co ..."
Type
: Post
Tags
: design, ux
http://dontcodetired.com/blog/post/Design-is-Not-Adornment
Updating Your Windows 8 App to Windows 8.1: Handling Widths and Replacing Snapped Mode
"Windows 8.1 allows users to resize Windows more freely than Windows 8.0. In Windows 8.0 there was the concept of snapped, filled and full screen viewstates. These concepts are no more in Windows 8.1 a ..."
Type
: Post
Tags
: windows 8 apps
http://dontcodetired.com/blog/post/Updating-Your-Windows-8-App-to-Windows-81-Handling-Widths-and-Replacing-Snapped-Mode
Clean C# eBook Published
The final version of my free Clean C# eBook has just been published. You can download the bo
Type
: Post
Tags
: c#, writing
http://dontcodetired.com/blog/post/Clean-C-eBook-Published
Remote Debugging Azure Functions V2 "The breakpoint will not currently be hit. No symbols have been loaded for this document"
Sometimes it can be tricky to attach the Visual Studio debugger to a deployed Azure Functions app. F
Type
: Post
Tags
: Azure, azure functions, visual studio, debugging, serverless
http://dontcodetired.com/blog/post/Remote-Debugging-Azure-Functions-V2-The-breakpoint-will-not-currently-be-hit-No-symbols-have-been-loaded-for-this-document
Beyond the Compiler with ConventionTests
"We often have conventions in our code. For example all DTOs/entity/etc. classes should be in a specific namespace, or the name of certain types of class should end with a given word. Another example, ..."
Type
: Post
Tags
: conventiontests, teststack, c#, testing
http://dontcodetired.com/blog/post/Beyond-the-Compiler-with-ConventionTests
Mocking HttpRequest Body Content When Testing Azure Function HTTP Trigger Functions
When creating Azure Functions that are triggered by an HTTP request, you may want to write unit test
Type
: Post
Tags
: testing, xunit.net, mocking, azure functions
http://dontcodetired.com/blog/post/Mocking-HttpRequest-Body-Content-When-Testing-Azure-Function-HTTP-Trigger-Functions
Logging Application Block: Event Types Quick List
"A quick list of some event types you can raise using the Logging Application Block (http://microsoft.com) AdminMessageEvent AuditMessageEvent AuditOperationEvent ErrorMessageEvent ExternalError ..."
Type
: Post
http://dontcodetired.com/blog/post/Logging-Application-Block-Event-Types-Quick-List
New Pluralsight Course: Working with Nulls in C#
My latest Pluralsight course is now available for viewing. It covers the fundamental aspects of work
Type
: Post
Tags
: pluralsight courses, .net, c#
http://dontcodetired.com/blog/post/New-Pluralsight-Course-Working-with-Nulls-in-C
Asserting the Results of Tests in xUnit.net
The below is an excerpt from the latest chapter “An Introduction to Unit Testing With xUnit.ne
Type
: Post
Tags
: xunit, testing
http://dontcodetired.com/blog/post/Asserting-the-Results-of-Tests-in-xUnitnet
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26