Logo 
Search:

c programming Interview FAQs

Submit Interview FAQ
No Records Found!!!
Go Ahead and Post your Interview FAQ
Home » Interview FAQs » c programmingRSS Feeds
.Net Framework
Comments: 0

Can I do things in IL that I can't do in C#?

Yes. A couple of simple examples are that you can throw exceptions that are not derived from System.Exception, and you can have non-zero-based arrays.
Posted By:Angie Bennett      Posted On: Dec 07

.Net Framework
Comments: 0

Does .NET replace COM?

This subject causes a lot of controversy, as you'll see if you read the mailing list archives. Take a look at the following two threads:

discuss.develop.com/.../wa.exe
discuss.develop.com/.../wa.exe

The bottom line is that .NET has its own mec...
Posted By:Ray Lawrence      Posted On: Nov 24

.Net Framework
Comments: 0

How can I stop my code being reverse-engineered from IL?

You can buy an IL obfuscation tool. These tools work by 'optimising' the IL in such a way that reverse-engineering becomes much more difficult.

Of course if you are writing web services then reverse-engineering is not a problem as clients do not h...
Posted By:Cambria Lopez      Posted On: Dec 02

.Net Framework
Comments: 0

I can't be bothered with CAS. Can I turn it off?

Yes, as long as you are an administrator. Just run:

caspol -s off
Posted By:Jarrod Williams      Posted On: Mar 24

.Net Framework
Comments: 0

Can I look at the IL for an assembly?

Yes. MS supply a tool called Ildasm that can be used to view the metadata and IL for an assembly.
Posted By:Evelyn Hughes      Posted On: Jan 13

.Net Framework
Comments: 0

Can source code be reverse-engineered from IL?

Yes, it is often relatively straightforward to regenerate high-level source from IL. Lutz Roeder's Reflector does a very good job of turning IL into C# or VB.NET.
Posted By:Douglas Sullivan      Posted On: Jan 28

.Net Framework
Comments: 0

Can I do things in IL that I can't do in C#?

Yes. A couple of simple examples are that you can throw exceptions that are not derived from System.Exception, and you can have non-zero-based arrays.
Posted By:Angie Bennett      Posted On: Dec 07

.Net Framework
Comments: 0

Does .NET replace COM?

This subject causes a lot of controversy, as you'll see if you read the mailing list archives. Take a look at the following two threads:

discuss.develop.com/.../wa.exe
discuss.develop.com/.../wa.exe

The bottom line is that .NET has its own mec...
Posted By:Ray Lawrence      Posted On: Nov 24

.Net Framework
Comments: 0

How can I stop my code being reverse-engineered from IL?

You can buy an IL obfuscation tool. These tools work by 'optimising' the IL in such a way that reverse-engineering becomes much more difficult.

Of course if you are writing web services then reverse-engineering is not a problem as clients do not h...
Posted By:Cambria Lopez      Posted On: Dec 02

.Net Framework
Comments: 0

I can't be bothered with CAS. Can I turn it off?

Yes, as long as you are an administrator. Just run:

caspol -s off
Posted By:Jarrod Williams      Posted On: Mar 24

.Net Framework
Comments: 0

Can I look at the IL for an assembly?

Yes. MS supply a tool called Ildasm that can be used to view the metadata and IL for an assembly.
Posted By:Evelyn Hughes      Posted On: Jan 13

.Net Framework
Comments: 0

Can source code be reverse-engineered from IL?

Yes, it is often relatively straightforward to regenerate high-level source from IL. Lutz Roeder's Reflector does a very good job of turning IL into C# or VB.NET.
Posted By:Douglas Sullivan      Posted On: Jan 28

  49  50  51  52  53  54  55  56  57  58  59