RE: .Net Impressions, Right Or Wrong

  • From: "Jim" <jhomme1028@xxxxxxxxx>
  • To: <programmingblind@xxxxxxxxxxxxx>
  • Date: Thu, 24 Jun 2010 17:34:22 -0400

Hi,
I just found in the LBC instructions how to include the LBC dll file when
you compile a Visual Basic program. I'm going to add a compiler line to my
EdSharp.ini and put that modification in it.

Jim

Jim Homme
Skype: jim.homme
"Every day's a gift."


-----Original Message-----
From: programmingblind-bounce@xxxxxxxxxxxxx
[mailto:programmingblind-bounce@xxxxxxxxxxxxx] On Behalf Of Jamal Mazrui
Sent: Thursday, June 24, 2010 3:44 PM
To: programmingblind@xxxxxxxxxxxxx
Subject: Re: .Net Impressions, Right Or Wrong

Jim and others,

The C#, VB, or other .NET language compilers translate source code into an 
assembly (either .dll or .exe) containing code in the Common Intermediate 
Language, abbreviated IL.  The Common Language Runtime (CLR) JIT compiles 
(Just In Time) the IL into native machine code of the platform and then 
runs that code through the operating system.

In general, .NET DLL assemblies have to be placed either in the same 
directory as the application executable that uses them, or in the Global 
Assembly Cache (GAC), which is a subdirectory of the Windows directory. 
It does not matter what source code language was used to create an 
assembly.  The compiler used checks that all types (classes) used in the 
source code are defined in one of the referenced assemblies (some are 
referenced by default).

In a separate message, I will post a fruit basket program that hopefully 
helps anyone interested in using EdSharp and Layout by Code.  If you have 
further questions after reading that documentation and the HomerApp 
documentation, let me know.  I want the documentation to help people use 
these libraries which I have spent much time in developing.

Jamal

__________
View the list's information and change your settings at 
//www.freelists.org/list/programmingblind

__________
View the list's information and change your settings at 
//www.freelists.org/list/programmingblind

Other related posts: