Json.NET deserialize or serialize json string and map properties to different property names defined at runtime

I have the following JSON string: ``` { "values": { "details": { "property1": "94", "property2": "47", "property3": "32", "property4": 1 ...

23 May at 11:51

How create a QueryExpression with null field in PocoDynamo

I want query over GSI when a range key is null. I have this code, but it thrown a exception ``` IPocoDynamo dbDynamo = new PocoDynamo(new AmazonDynamoDBClient()); var queryExpression = dbDynamo.FromQ...

Capture screenshot of fullscreen DX11 program using SharpDX and EasyHook

Before anybody mentions it, I refered to [this](http://www.codeproject.com/Articles/274461/Very-fast-screen-capture-using-DirectX-in-Csharp) link to find out how I needed to copy the backbuffer to a b...

23 May at 12:16

Automapper:Converting JSON to list of objects

Source Object (JSON, using JSON.NET if it matters): Destination Object (C#): Automapper config and mappings: Everything works except for the SaaCodes conversion, where Automapper converts each entry i...

23 May at 12:34

How to return html page from WebApi action?

I'm looking for a WebApi example where the default route will return a given html page to the caller. I've got the route and action set up as follows. I just want to send him the index.html page, no...

29 Jun at 17:23

ServiceStack.Text set JsConfig on application start

I set JsConfig in Application_Start method in my asp net mvc application ``` protected void Application_Start() { JsConfig.DateHandler = JsonDateHandler.ISO8601; JsCon...

29 Jun at 15:34

Trying to understand ?. (null-conditional) operator in C#

I have this very simple example: ``` class Program { class A { public bool B; } static void Main() { System.Collections.ArrayList list = null; if (list?....

Is working Universal Windows Platform (UWP) on Linux,Mac,... based on dotNET Core?

I want to know can I use UWP with dotNET Core 1.0 final release for creating application for Mac, Linux and etc or not ? If no, is there any way for creating application based on dotNET Core 1.0 on o...

19 Sep at 08:13

MVC 5 Routing Attribute

I have the Home Controller and my Action name is Index. In My route config the routes like below. ``` routes.MapRoute( "Default", // Route name "{controller}/{action}/{id}", // URL with pa...

Specified network name no longer available when connecting to SQL Server in .NET

I reinstalled my main work pc, but didn't reinstall visual studio after 5 months. Now i did and started my old project, and now it doesn't run. I get a timeout error when connecting to SQL Server, so...

29 Jun at 13:41

Is there a generic numeric type in C#?

I'd really like a a generic numeric type as the second generic type parameter of the `Func<TInput, THere, TResult>` given below so I can provide either an integer or a double or a decimal as and when ...

29 Jun at 12:31

I don't understand why we need the 'new' keyword

I am new to C#, from a C++ background. In C++ you can do this: ``` class MyClass{ .... }; int main() { MyClass object; // this will create object in memory MyClass* object = new MyClass(); // t...

29 Jun at 17:10

Using nameof to get name of current method

Have browsed, searched and hoped but cannot find a straight answer. `nameof` I am adding my test results to a dictionary like this: ``` Results.Add(nameof(Process_AddingTwoConsents_ThreeExpectedRow...

23 May at 12:34

.NET external configuration server

I am developing a web application which will contain quite a few hosts. I have seen external configuration storages been used in Java e.g. with Spring Cloud Config Server. Are there any non-custom al...

29 Jun at 10:31

Azure Functions binding redirect

Is it possible to include a web.config or app.config file in the azure functions folder structure to allow assembly binding redirects?

Can't get config section after update to ASP.NET Core 2

I updated my project from 1.0.0-rc1-final to 1.0.0-rc2-final which is called ASP.NET Core 2 now. This is how I initialize the configuration builder: ``` var builder = new ConfigurationBuilder().SetBa...

View large multi page Tif images within 100 milliseconds

I'm using WinForms. Inside my form I have a `pictureBox` (set to `normal mode`), next and previous button. I want to resize and load Multipage TIF images quickly. When I go to the next page in the Mul...

4 Jul at 23:10

Provide ArrayPool object to JsonOutputFormatter constructor

After upgrading from .net RC2 to RTM I find I need to supply a parameter to a constructor of JsonOutputFormatter that derives from ArrayPool. How do I get this object? I am newing JsonOutputFormatter...

30 Jun at 01:5

Json.NET in Unity throwing 'The type or namespace `Newtonsoft` could not be found'

I used nuget to install Json.NET into my Unity project but the issue is when I launch it throws `The type or namespace 'Newtonsoft' could not be found. Are you missing a using directive or an assembly...

28 Jun at 18:56

Not calling Dispose on HttpRequestMessage and HttpResponseMessage in asp.net core

What is the best practice for calling Dispose (or not) on HttpRequestMessage and HttpResponseMessage with asp.net core? Examples: [https://github.com/aspnet/Security/blob/1.0.0/src/Microsoft.AspNetC...

3 Nov at 14:53

Update of System.IdentityModel.Tokens.Jwt causing breaking change in IdentityServer3 Client

Hopefully an easy one to resolve. Microsoft's `System.IdentityModels.Tokens.Jwt` package was updated yesterday on NuGet from `4.0.2.206211351` to `v5.0`. This is unfortunately causing a breaking chan...

28 Jun at 16:15

Get Documents folder path of current logged on user

I'm developing a C# WinForms application. This application has the ability to update if an update is available on server. It's working fine, but only for an admin user. The Application will check and...

17 Jul at 20:13

NuGet has problems with missing packages, how to restore?

When I try to compile my program I get the following error: ``` This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more i...

Get assembly executable directory

I have two applications, e.g. App1 and App2. When running normally, App1 will show its assembly executable location. But when I call App1 from App2, it returns App2's startup location. So, how do I ge...

23 Nov at 20:21

Comparing Guid with string

I'm surprised that I couldn't find an answer to this either in Google or here on SO, but what is the best way to compare a `string` to `Guid` taking into consideration case, and, if appropriate, perfo...

27 Jun at 22:10