473,833 Members | 2,167 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

C# code analyser...

Dev
Can you please tell me what C# code analyser do you use.
Is devAdvantage the best?

Do you use FxCop as well in conjunction with statis code analyser?
Is it good practise to use Obfuscator?

Your guidence would be apprecited.

Thanks,
Dev

Nov 16 '05 #1
4 1764
I use FxCop.

If you don't want ppl to pry into your IL, then obfuscate - i don't think
there are any after effects due to obfuscation though...even if there happens
to be some issue (like perf or so), the impact should probably be extremely
low.

"Dev" wrote:
Can you please tell me what C# code analyser do you use.
Is devAdvantage the best?

Do you use FxCop as well in conjunction with statis code analyser?
Is it good practise to use Obfuscator?

Your guidence would be apprecited.

Thanks,
Dev

Nov 16 '05 #2
even if there happens to be some issue (like perf or so)


Given the level of self-obfuscation that some people's naming
conventions inflict, I don't think you'll see any problems :-)

Cheers,
Jim Cooper

_______________ _______________ _______________ __

Jim Cooper ji*@falafelsoft .com
Falafel Software http://www.falafelsoft.co.uk
_______________ _______________ _______________ __
Nov 16 '05 #3

"Rakesh Rajan" <Ra*********@di scussions.micro soft.com> wrote in message
news:45******** *************** ***********@mic rosoft.com...
I use FxCop.

If you don't want ppl to pry into your IL, then obfuscate - i don't think
there are any after effects due to obfuscation though...even if there happens to be some issue (like perf or so), the impact should probably be extremely low.
There can be an impact for several reasons:

1) Anywhere you use reflection is potentially impacted. Examples include:
a) Enum.Parse
b) Any kind of 'active' configuration files (eg containing names of
classes to instantiate)
c) Serialisation
2) Any public interface you make available to third parties
3) Obfuscators contain bugs -- they can screw up code (although that's rare)

Stu

"Dev" wrote:
Can you please tell me what C# code analyser do you use.
Is devAdvantage the best?

Do you use FxCop as well in conjunction with statis code analyser?
Is it good practise to use Obfuscator?

Your guidence would be apprecited.

Thanks,
Dev

Nov 16 '05 #4
Obfuscators that work by parsing like the C# compiler does,
don't screw up. At least our doesn't.

Names which might get mangled by an obfuscator,
that are used in some public context (your reflection,
serialization, initialization examples below,
are easily handled: tell the obfuscator not
to touch them.

--
Ira D. Baxter, Ph.D., CTO 512-250-1018
Semantic Designs, Inc. www.semdesigns.com
"Stu Smith" <st*****@nosp am-digita.com> wrote in message
news:eV******** ******@tk2msftn gp13.phx.gbl...

"Rakesh Rajan" <Ra*********@di scussions.micro soft.com> wrote in message
news:45******** *************** ***********@mic rosoft.com...
I use FxCop.

If you don't want ppl to pry into your IL, then obfuscate - i don't think there are any after effects due to obfuscation though...even if there happens
to be some issue (like perf or so), the impact should probably be

extremely
low.


There can be an impact for several reasons:

1) Anywhere you use reflection is potentially impacted. Examples include:
a) Enum.Parse
b) Any kind of 'active' configuration files (eg containing names of
classes to instantiate)
c) Serialisation
2) Any public interface you make available to third parties
3) Obfuscators contain bugs -- they can screw up code (although that's

rare)
Stu

"Dev" wrote:
Can you please tell me what C# code analyser do you use.
Is devAdvantage the best?

Do you use FxCop as well in conjunction with statis code analyser?
Is it good practise to use Obfuscator?

Your guidence would be apprecited.

Thanks,
Dev


Nov 16 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
1972
by: Bob Bedford | last post by:
My ISP is using webalyser 2.01 to show statistics on my site. As this may be sufficient for many webmasters, It doesn't fit my needs, as it doesn't have enough informations. I'm downloading the logs every day on my computer in order to analyse the logs with an other program. Wich one would you suggest. My needs are:
2
3558
by: Kavita | last post by:
Hello All I am using SQL server 2000 as the backend of my application but don't want my clients tobe able to view or edit the database tables, stored procedures , view etc using enterprise manager or query analyser (or similar tools)How can this be done ? I searched a lot for this but unable to get the correct answer is there anybody to give full solution regarding this. Please relpy me as early as possible
0
1215
by: Chris Michael | last post by:
Hey all, Hope this isn't off topic. I've had to reinstall Enterprise Manager and Query Analyser on my computer. Since the reinstall I haven't been able to open up the help (F1) files. I have no idea what to check or how to get the help files working again. Any help would be appreciated. Thanks, Chris Michael
1
2537
by: foldface | last post by:
Hi I'm expecting the answer no here but its worth asking. If I wanted to test an arbitary program could I somehow say in query analyser, start a global transaction on this database, run my tests, then at the end roll it back from with query analyser? I know I can use backup and restore but this would be easier, still, again, I don't think you can do this.
4
3795
by: Edward | last post by:
Hi All, Thanks upfront for any help given me. I just installed Visual Studio 2005 Professional & Sql Server on an XP SP2 PC and I do not see the old Sql Server Enterprise Manager and Sql Analyser? Would anyone know what happened to these tools? I selected to install the client tools but I do not see anything that looks
2
3026
by: Prem | last post by:
Apparently the query analyser of sql server does not recognise a database with a point in it, like mail.archive.mdf I receive the following error when I use it: Server: Msg 911, Level 16, State 1, Line 1 Could not locate entry in sysdatabases for database 'mail'. No entry found with that name. Make sure that the name is entered correctly.
2
2331
by: Frank-René Schäfer | last post by:
penSource Project 'Quex': http://quex.sf.net Last weekend, the lexical analyser generator 'Quex' has been released on SourceForge. Quex provides advanced features for mode definitions and event handling. Among its features are -- Creation of a complete C++ environment for lexical analyser engines. -- Modes management:
0
1251
by: Jason | last post by:
Hi All, OS is Server 2003 and is SQL Server 2000 When running my query as a scheduled procedure through Enterprise Manager (using Server Agent) it takes 24 mins (Too Long).... In query Analyser the exact query takes less than 5 mins? The query is big and complex but runs without error... and the server is (dual core 3GHz Xeon) x 2 .... with of 4Gigs of RAM I need to run this query as part of a scheduled job, Any ideas?
7
1754
by: LaMoRt | last post by:
Hi there! Is there any way to find the user who did some transaction of update in query analyser in certain time ? The update was done manually in query analyser and is not through system. Is there any way to check it? Any command or software to check this data as when certain table was
0
9796
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10782
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10500
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9323
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6951
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5624
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4422
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3972
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3078
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.