Home
Archive
Contact
Search results for '世����揭幕战 ( 世界杯��定网站 KL99.cc )世界杯���幕战 世界杯揭���战 ac'
Testing for Thrown Exceptions in MSTest V2
In previous posts we looked at testing for thrown exceptions in xUnit.net and NUnit. In this post we
Type
: Post
Tags
: mstest, testing, qa, c#
http://dontcodetired.com/blog/post/Testing-for-Thrown-Exceptions-in-MSTest-V2
Improving Azure Functions Blob Trigger Performance and Reliability - Part 4: Periodically Checking for Unprocessed Blobs
In the this final part of this series we wrap up by briefly discussing some ways to check for blobs
Type
: Post
Tags
: C#, azure, azure functions, .net, serverless, azurefunctionblobtriggerseries
http://dontcodetired.com/blog/post/Improving-Azure-Functions-Blob-Trigger-Performance-and-Reliability-Part-4-Periodically-Checking-for-Unprocessed-Blobs
Detecting when a Silverlight app enters full screen mode
"Obviously you know when a users clicks your full screen button but a the user can press escape to exit full screen mode at any time, an alternative is to respond to the FullScreenChanged event. F ..."
Type
: Post
Tags
: .net, c#, silverlight, silverlight 3, xaml
http://dontcodetired.com/blog/post/Detecting-when-a-Silverlight-app-enters-full-screen-mode
Silverlight 3 - Detecting Network Availability
"One of the new SL3 features is the ability to test if there is a network connection currently active. This complements the out of browser experience by letting an app use local (isolated) storage when ..."
Type
: Post
Tags
: silverlight, silverlight 3, wpf, c#, oob, out of browser, sloob
http://dontcodetired.com/blog/post/Silverlight-3-Detecting-Network-Availability
Getting Input From Alternative Sources in .NET Console Applications
Using the Console.SetIn Method allows us to specify an alternative source (TextReader stream). For e
Type
: Post
Tags
: c# tips, c#, .net, console applications
http://dontcodetired.com/blog/post/Getting-Input-From-Alternative-Sources-in-NET-Console-Applications
Testing Precompiled Azure Functions Overview
Just because serverless allows us to quickly deploy value, it doesn’t mean that testing is now
Type
: Post
Tags
: azure functions, azure, serverless, c#, .net
http://dontcodetired.com/blog/post/Testing-Precompiled-Azure-Functions-Overview
Introduction To Extension Methods in C#
Extension methods allow you to extend the functionality of an existing class without using inheritan
Type
: Post
Tags
: c#, extension methods
http://dontcodetired.com/blog/post/Introduction-To-Extension-Methods-in-C
A Simple Menu Roll-over using jQuery and CSS
"The following ASP.NET page shows a simple example of a menu created using a combination of CSS and jQuery. The menu is defined as an unordered list (which makes semantic sense) and styled with CS ..."
Type
: Post
Tags
: asp.net, css, html, javascript, jquery
http://dontcodetired.com/blog/post/A-Simple-Menu-Roll-over-using-jQuery-and-CSS
Determine site’s absolute, fully-qualified url in asp.net
" I'm working on a Silverlight media player like you get on MySpace and other sites. The app is meant to be as simple as possible, so i've created a Silverlight-enabled WCF service which r ..."
Type
: Post
Tags
: silverlight, c#, wcf, asp.net
http://dontcodetired.com/blog/post/Determine-sitee28099s-absolute-fully-qualified-url-in-aspnet
FeatureToggle v4 Released
"Version 4 of FeatureToggle is now released. This release adds initial support for .NET Core. Example code. Release notes. Breaking Changes: Min framework now 4.6.1 / .NET Standard 1.4 Windows 8.n, ..."
Type
: Post
Tags
: featuretoggle, open source, .net, .net core
http://dontcodetired.com/blog/post/FeatureToggle-v4-Released
Microsoft Certified Master Program
"The 3 week master program costs US$18,500 (I'm assuming not inclusive of accommodation!) and runs in Redmond, Washington.You have to be accepted onto the program by supplying a CV and potentially ..."
Type
: Post
http://dontcodetired.com/blog/post/Microsoft-Certified-Master-Program
ICYMI C# 8 New Features: Write Less Code with Using Declarations
This is part 2 in a series of articles. One nice little enhancement introduced in C# 8 helps to simp
Type
: Post
Tags
: icymcs8series, C#, .net, .net core, C#8
http://dontcodetired.com/blog/post/ICYMI-C-8-New-Features-Write-Less-Code-with-Using-Declarations
Advanced SpecFlow: Custom Conversion of Step Parameters and Data Tables with [StepArgumentTransformation]
SpecFlow is a tool that allows the writing of business-readable tests that can then be automated in
Type
: Post
Tags
: testing, quality, specflow, gherkin, bdd, atdd, specification by example
http://dontcodetired.com/blog/post/Advanced-SpecFlow-Custom-Conversion-of-Step-Parameters-and-Data-Tables-with-StepArgumentTransformation
New Pluralsight Course: Creating Automated Browser Tests with Selenium in C#
My newest Pluralsight course was just published and you can start watching today. Selenium is a tool
Type
: Post
Tags
: C#, selenium, testing, .net, profession, personal development
http://dontcodetired.com/blog/post/New-Pluralsight-Course-Creating-Automated-Browser-Tests-with-Selenium-in-C
The Golden Age of Software Development
"There's a lot of negativity sometimes in our profession, just take a look in your Twitter stream. The tools we use aren't absolutely 100% without imperfection; the vendors of the tools we use don't al ..."
Type
: Post
Tags
: people, profession, personal development
http://dontcodetired.com/blog/post/The-Golden-Age-of-Software-Development
Goodbye 2020, Hello 2030
"It has felt like a looong year. We have been relatively lucky here in Australia and especially so in Western Australia. We still went through the toilet paper panic, the handwash shortages, and the tr ..."
Type
: Post
Tags
: personal development
http://dontcodetired.com/blog/post/Goodbye-2020-Hello-2030
Getting Blob Metadata When Using Azure Functions Blob Storage Triggers
(This article refers to Azure Functions V2) Basic Blob Metadata There are a few basic pieces of meta
Type
: Post
Tags
: C#, azure, azure functions, .net, serverless
http://dontcodetired.com/blog/post/Getting-Blob-Metadata-When-Using-Azure-Functions-Blob-Storage-Triggers
Diversity in Software Development
"I had a nice comment from @mbartosovsky on Twitter about women in IT and thought I would create a few charts that represent my 12+ years experience in software development. The results are from me th ..."
Type
: Post
Tags
: people, diversity, women
http://dontcodetired.com/blog/post/Diversity-in-Software-Development
Converting Chars to Doubles in C#
If we’ve got chars with numeric digits in them, we can convert them to numeric (double) values
Type
: Post
Tags
: c# tips, c#, .net
http://dontcodetired.com/blog/post/Converting-Chars-to-Doubles-in-C
What’s the Difference Between & and && in C# ?
My previous article “Non Short Circuiting C# Conditional Operators” garnered some commen
Type
: Post
Tags
: c# tips, c#, .net
http://dontcodetired.com/blog/post/Whate28099s-the-Difference-Between-and-in-C-
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23