Questions tagged [.net-4.6.2]

.Net 4.6.2 is the version of the popular Microsoft .Net framework and adds several new features. Use for questions specifically related to .NET Framework 4.6.2. For questions on .NET Framework generally, use the .net tag.

.Net 4.6.2 is the latest version of the popular Microsoft .Net framework and adds several new features.

What's New in .NET Framework 4.6.2
.NET Framework 4.6.2 System Requirements

Released by Microsoft Corporation
Release Date: 2016-08-06

158 questions
0
votes
2 answers

How to remove TASHKEEL / HARAKAT from given Arabic string in C#

I want to remove the following TASHKEEL / HARAKAT from any given Arabic string without removing letters How can i do that? C# .net 4.6.2
Furkan Gözükara
  • 22,964
  • 77
  • 205
  • 342
0
votes
1 answer

Getting exception Method not found: 'System.Runtime.CompilerServices.CallSiteBinder

I'm currently working on migrating a .net 4 dll to .net core. I'm porting my unit tests but cannot make them work. This is my project.json for the dll { "version": "1.0.0-*", "dependencies": { "NETStandard.Library": "1.6.1", }, …
Jawen
  • 1,416
  • 1
  • 14
  • 26
0
votes
1 answer

Can I use Prism 5 with .NET 4.6.2

I use Visual Studio 2013 and have upgraded a WPF solution from .NET 4.5.1 to 4.6.2. I was using the PRISM 5 libraries, but I seem to be getting some build errors relating to classes using Prism after the upgrade, along the lines of : error CS0012:…
jlb83
  • 1,988
  • 1
  • 19
  • 30
0
votes
0 answers

Difference between DataItem properties and result of Eval("") in ListView ItemTemplate

Firstly, I'm pretty sure this is a Framework bug somewhere. Dev - works correctly UAT - works correctly Prod - does not work. I have a list view The model has a bunch of properties. 7 of the properties are decimal 6 are output into text boxes, and 1…
Roger Willcocks
  • 1,649
  • 13
  • 27
0
votes
1 answer

Custom EventSources built using the (string name) base constructor aren't logging

I'm trying to implement ETW with a custom class based on EventSource (as is the intended design). I'm seeing logs just fine when using the base constructor public class TestSource : EventSource { public static readonly TestSource Log = new…
Mike D.
  • 391
  • 1
  • 6
0
votes
1 answer

Unsupported TargetFrameworkVersion 4.6.2 for Azure CloudService Role

I am trying to include worker role project targeting .NET 4.6.2 in my CloudService project which is on Azure 2.8. Upon building the CloudService project, I get the below error : Error The role Role1 is using an unsupported…
Ajn
  • 573
  • 3
  • 8
  • 18
0
votes
0 answers

Kestrel/IIS extremely slow on .NET 4.6.2

I have a NET 4.6.2 MVC (Frontend) which talks to a API (backend) via Rest and all of a sudden has become extremely slow on our test server. Other applications on the server appear fine, and running this application locally it's blinding fast. I've…
0
votes
2 answers

WCF Max Message Size Error

I have implemented WCF services for IStudent and few of them throwing Max Message size quota for incoming messages (65536) has been exceeded. I have implemented wsHttpBinding, also I tried to increase message side under bindings tab but still…
K.Z
  • 5,201
  • 25
  • 104
  • 240
0
votes
0 answers

ClickOnce Prerequisites 4.5.2 prompting users to upgrade .NET when 4.6.0 is installed

I am using MS ClickOnce in VS2015 to deploy an application. I have the prerequisite of .NET 4.5.2 checked under the Publish tab as the application requires .NET 4.5.2 minimum to use TLSv1.2 and I have it configured to use the vendor's website to…
bz23
  • 13
  • 6
0
votes
1 answer

Using long paths (>260) with .net 4.6.2 in Windows service

I have some code that has begun to throw the exception: TooLongPathException. So I did some research and found out that .net 4.6.2 solves this problem. Great! The code that fails is code that moves and copies folders to different folders. I would…
Sigmundur
  • 725
  • 1
  • 8
  • 25
0
votes
1 answer

Support for .NET 4.6.2 in Azure Web Job

I tried deploying an Azure Web App built against .NET Framework 4.6.2 and it seems to work fine. However, within the same app, if I deploy a web job built against .NET 4.6.2, then it does not work. I get the following error: [10/06/2016 19:42:25 >…
Muhammad Waqar
  • 849
  • 2
  • 13
  • 29
0
votes
0 answers

Why UseLegacyPathHandling not working in UTC?

.Net 4.6.2 has a known breaking change. Path.GetDirectoryName no longer works with URI's. However for existing code which already uses this method, it breaks. There is a workaround provided by Microsoft. We can add following config entry in runtime…
hemant gautam
  • 791
  • 8
  • 9
-1
votes
1 answer

Send and receive message from a Telnet server using C# and .NET Framework 4.6.2

I want to communicate with a Telnet server using C# in .NET Framework 4.6.2. I just simply want to send a command and get its response. I have already tried using Socket programming and Telnet library. In both cases, I am receiving the command as…
Hem Bhagat
  • 323
  • 3
  • 12
-1
votes
1 answer

Is it possible to know which .dll called a C# service? Even if the call passes through a COM layer first?

We have layered architecture that has a native C++ client, and a managed client C++/C# wrapper around it. (2 dll files, one native one managed) These two clients go through a COM layer to a C# service, there are many different versions of these…
M Y
  • 1,831
  • 4
  • 24
  • 52
-1
votes
1 answer

Base class with a generic type which implements an interface with a generic type

I'm implementing a Repository pattern and I would like to FooRepository to be re-usable for all models that implement IEntity however the IDE (Rider) says that Type parameter 'IEntity' hides interface 'IEntity' and later one causes the error message…
Westerlund.io
  • 2,743
  • 5
  • 30
  • 37
1 2 3
10
11