I'm developing in an Asp.net C # project and I'm not sure how to get a list of strings from my class on the page.
How do I get these values?
Code that I've used.
var pontos= rota.ObterCordenadas(this._gvConsultaCheck, txtDtInicial...
I'm creating a project using DataAnnotations mapping with Code First (similar to Hibernate ), without using FluentAPI .
It turns out that by implementing this process, some exceptions are being raised and I believe it is due t...
For example, I need to download a sequence of images:
http://www.simepar.br/site/fragmentos/radar/simepar_24.gif
http://www.simepar.br/site/fragmentos/radar/simepar_23.gif
http://www.simepar.br/site/fragmentos/radar/simepar_22.gif
How would...
I have my application layered with Class Library and my layer with Entity Framework , where I set DbContext , it's Repository .
My class inherited from DbContext:
public class Context : DbContext
{
private stati...
Are static classes, methods, and properties shared across the application's threads?
That is, if I modify the static property foo in ThreadA , and then modify the same static property foo in ThreadB , what will be th...
When you close the application (either close button, ALT F4 , or any method other than the process manager), continue running in the Windows Icon Tray:
And is it too complicated to make a menu when you click the context button (usual...
I am studying about Windows Forms Application . I did a tutorial where the ListView is used to display the data of a search according to the parameters passed.
But I noticed that there is also GridView to use in the toolbox. And in this o...
Boxing is to turn value type into reference type, right?
But when we copy a reference type into another reference type , it just copies the address, not the value. But when I convert int to object for example and copy to an...
Is there a way to configure Visual Studio to create classes with public ?
When you create a class by template, either from the dropdown menu of a mouse over a class name that does not exist yet, or by adding a class to a project, they a...