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
-1
votes
1 answer

.NET Standard vs .NET Framework

I'm getting the following error: Project .EventPublisher is not compatible with net462 (.NETFramework,Version=v4.6.2). Project EventPublisher supports: netstandard2.0 (.NETStandard,Version=v2.0) I thought (and accordingly to…
-1
votes
1 answer

Error when publishing Migrated ASP.Net web application with framework 4.6.2

We have a requirement to migrated the ASP .Net web app from .Net framework 3.5 to 4.6.2. I have migrated the application to frame work 4.6.2 and able to run the application. problem comes here when publishing the code. I am getting an error:…
-1
votes
1 answer

Change textbox Text during async Task-Update UI

Here is my simple codes : private async void button1_Click(object sender, EventArgs e) { TextBox1.Text = ""; await MyMethodAsync(); } public async Task MyMethodAsync() { TextBox1.Text = "Test 1" +…
SilverLight
  • 19,668
  • 65
  • 192
  • 300
-1
votes
1 answer

Run Application from C# in a different context

I want to build a Mater-Slave structure with console applications. In the root directory I have my main application. After the application started it starts the slaves which are located in a subdirectory of the root directory. Not a problem so far.…
-2
votes
1 answer

My json string is too long for the StreamWriter object

I'm trying to serialize a json string into an object. I'm forced to use .net version 4.6.2 so I can't use the tools I would normally use. I can't either user async because of the framework I'm working in. I have come up with this method and it's…
Kresten
  • 810
  • 13
  • 36
-2
votes
1 answer

Checking Generic Class

You have this syntax in C# that allows you to be able to filter what classes can use this method. where T : IComparable In my case it would be where T : DataRow I want to make a method in VB.Net where I make sure the Generic T item that we are…
-2
votes
1 answer

Transaction not set

For some reason, SqlCommand.Transaction is not getting set. The code that sets it is definitely getting called (verified in debugger), but after the property is set, the property is still null. Here's the code... cmd.Connection = cmd.Connection ??…
Brian
  • 37,399
  • 24
  • 94
  • 109
-2
votes
1 answer

C# Multithreading String Array

I feel super confused... I am trying to implement an asynchronous C# call to a Web API to translate a list of values, the result I expect is another list in a 1 to 1 fashion. We don't mind about order, we are just interested in speed and to our…
Edgar J. Rodriguez
  • 285
  • 1
  • 2
  • 13
1 2 3
10
11