Questions tagged as '.net'

2
answers

Dll C # in Delphi 7

I need to generate a "ini" file in the "C: \ Windows \ Temp \ USB.ini" folder containing printer information installed for another pre- historic consume. I created the following (gambiarra) dll in C #: [ClassInterface(ClassInterfaceType...
asked by 05.03.2014 / 15:17
2
answers

Versioning scheme

In .NET,% generated% have four version numbers. I've heard a lot about the major version and minor version, and that these would be the first two numbers. I've heard that the third one would be a "maintenance" number and the fourth would be a "r...
asked by 26.02.2014 / 19:33
1
answer

Detect Caps Lock C #

I made an application to detect the state of the caps lock in C #, but found a problem, when the application loses focus, the events can no longer be triggered causing the notifications to no longer be displayed by the application. I took a brie...
asked by 03.05.2014 / 13:37
1
answer

TransactionScope does not perform transactions

I'm trying to use TransactionScope in C #, I'm running tests with local bank, but every time I try to execute some method it returns me this exception: Partner transaction manager has disabled your support for remote / network transac...
asked by 19.05.2014 / 20:21
1
answer

How to convert a value in UNIX type Timestamp to DateTime?

How to convert a value to type UNIX timestamp (seconds since 1970) , example 1396148400 , in a DateTime ?     
asked by 13.04.2014 / 01:01
1
answer

How to publish a secure .EXE without being Click Once .Net

My scenario is made up as follows: I have applications, which are configured according to each client, are mass-sold applications, I have a support system, which automates this configuration and generates one executable per client. After g...
asked by 20.05.2015 / 16:10
1
answer

Meaning of expression% # "example"%

I'm used to seeing expressions like <%= "Olá" %> but I came across a code: <asp:Image id="imagemStatusDocumento" runat="server" ImageUrl='<%# ObtemImagem(Eval("NomeTipo")) %>' /> Highlighting the...
asked by 27.10.2017 / 14:41
1
answer

The Node in the .NET world would be the CLR or .NET?

Given that Node is a server-side development platform in JS ... and in .NET do we have the CLR (Common Language Runtime) the Node would be the CLR that compiles? Or a framework as .NET, as two import modules I was pretty confused about this i...
asked by 18.08.2017 / 16:32
1
answer

What are the differences between BCL and FCL?

The Base Class Library (BCL) Framework Class Library (FCL) is a .NET component. What defines what each one does? What goes into each one?     
asked by 03.04.2017 / 14:43
1
answer

LINQ Lambda | Query Syntax VS Method Syntax Performance [duplicate]

Doubt regarding construction and performance of querys using Query Syntax and Method Syntax / LINQ Query Syntax: var VendorQuery = from v in vendors where v.CompanyName.Contains("Toy")...
asked by 27.12.2018 / 10:58