Programming in C# Assemblies
Programming in C# Assemblies
Assemblies
Assemblies
•Code contained in files called “assemblies”
–code and metadata
–.exe or .dll as before
–Executable needs a class with a
“Main” method:
•public
static void Main(string[] args)
–types
•local: local assembly, not
accessible by others
•shared: well-known location, can
be GAC
•strong names: use crypto for
signatures
–then can add some versioning and
trust
PE executable file3
Comments
Post a Comment