Questions tagged as '.net'

1
answer

Is it possible to include the .NET requirement to run a stand-alone application?

The title can be confusing, but the goal is to make an application written with .NET run without the .NET Framework. In practice this is almost impossible because the application depends on the .NET libraries to run, but in my theory, merge the...
asked by 19.09.2018 / 05:57
1
answer

Is ASMX web service obsolete?

I came across the need to consume an ASMX Web Service. So far I had just consumed RESTful APIs. I noticed that the same is quite different from a RESTful API, for example. Given the way it's set up, it looks like it's already been set aside,...
asked by 22.03.2018 / 13:23
2
answers

loop of repetition C # asp components

Would you like to make a loop in this case? PaperBLL paperBLL = new PaperBLL(); List<PaperEO> papers = paperBLL.SelectPapers(); HyperLink1.ImageUrl = "~/App_Themes/MultiMercadoLibertyExclusiva/Capas/" + papers.First(x => x.id == 1)....
asked by 02.07.2014 / 19:17
1
answer

What exactly does the Application.DoEvents () method do?

According to Microsoft help , the Application.DoEvents () :    Process all Windows messages that are currently in the message queue. But what does that mean? Why does he say messages? What line is this?     
asked by 02.10.2017 / 20:08
1
answer

Using async with .NET Core and nHibernate

In the .NET Core I know that we have async and await to request async . So far so good, but many frameworks on the market are creating methods with the MetodoAsync() signature and have the method without being async M...
asked by 09.10.2017 / 13:33
1
answer

Convert dynamic to query string

Is there a more "elegant" way of converting a dynamic to a query string ? I'm currently doing with several Replace() but it's not quite what I wanted. string data = new { email = email, password = password } .ToString...
asked by 05.11.2017 / 13:52
1
answer

Get values separated by spaces in C #?

I want to get the values, for example, 79 201 304 and store in a vector each number in a position. Example: int array[0] = 79; int array[1] = 201; int array[2] = 304; public static int Descriptografa(string txt, int p, int q, int d, int...
asked by 07.11.2017 / 15:45
1
answer

Is web service hosting the same as a site with pages?

I'm developing a mobile application with Xamarin. This application is a screen to authorize or not to discount above that authorized by the sellers. So I have a web service that goes in the bank and takes all the relevant information to the cl...
asked by 15.08.2017 / 15:21
1
answer

Use .NET Framework DLL in .NET Core

Can a .NET C # DLL compiled in .NET 4.6 be imported into a .NET Core program on Linux?     
asked by 17.12.2018 / 19:42
1
answer

Doubt in a lambda expression returning "true"

When I do this: List<Tipo1> tipo = await context.MeuMetodo.Find(x => true).ToListAsync(); What am I saying here: (x => true) ?     
asked by 27.06.2018 / 15:12