All Questions

1
answer

Compatibility between .NET Core 2.0 and .NET Framework 4.7

I'm creating a general purpose library (DLL) for reuse in .Net Core 2.0 and .Net Framework 4.7 projects. I want to have .Net Core projects in Linux and .Net Framework 4.7 projects for Windows. Can a library developed with .Net Core 2.0 be used i...
asked on 20.08.2017 / 22:11
1
answer

Foreach within Foreach PHP

I have the following code: $row = $twitterusers->selectUserAll(); foreach ($row as $fetch) { $users[] = $fetch; } var_dump($users); It takes all the users of the table, however when using var_dump I realize that it has ar...
asked on 25.07.2017 / 14:45
1
answer

How does Visual Studio Edit and Continue work?

Visual Studio allows you to edit the C #, VB.NET, or C ++ code in debug when you hit a breakpoint or click the break button (pause icon). The tool name is Edit and Continue . According to the documentation    is a productivity feature that a...
asked on 25.10.2017 / 17:11
2
answers

If there is hint or warning the compiler cancels the compilation

I would like to compile an application and if it has some Hint or Warning , execution is suspended, giving rise to an error. Does anyone know if it's possible? Edit1: Warning's can be treated as errors. But is there anything that cou...
asked on 15.09.2017 / 04:44
2
answers

How does pagination done with PHP + AJAX?

I was browsing through the site looking for a functional example of pagination with AJAX + PHP, when I found this example Sorry for my ignorance, but the 'asynchronous loading' of AJAX causes me doubts .. However, I had a question: In th...
asked on 20.01.2016 / 15:52
2
answers

How to do method overload in javascript?

Personnel how to emulate method overload in javascript ? I know some programmers can, for example, I'm going to use gulp. gulp has method .task : var gulp = require('gulp'); gulp.task('example-task', function(){ console.log...
asked on 15.01.2016 / 21:35
1
answer

How to implement drag-and-drop on an html page?

I'm a Delphi programmer, but I'd like to implement a html page with the drag-and-drop feature of the page. I'm creating a page for avatar assembly, but I would like to leave the options of the accessories for the user just drag and drop. I...
asked on 17.12.2015 / 16:34
1
answer

How to filter with ng-repeat?

I have two <select> , ie a handmade multiselect picklist. In the first <select> , I want to show only the clients that are brought by ng-repeat but contain the consultaNotasDestinadas field as '1'. In...
asked on 10.02.2016 / 14:40
2
answers

Is there a maximum size limit for an HTML page?

   Note: This question is not about code optimization. It is well known that browsers have a size limit for a URI. Is there any kind of limit for requesting / rendering an HTML file? Given a simple example, let's say an HTML page genera...
asked on 28.12.2015 / 09:08
1
answer

Error comparing string [closed]

I'm trying to finish my last parts of the code, and I need to check the value of string , but I can not find any examples of how to handle it. I tried this code but the error appears:    Error 1 Can not implicitly convert type 'string'...
asked on 22.07.2017 / 00:22