Click here to Skip to main content
15,885,782 members
Home / Discussions / C#
   

C#

 
AnswerRe: Anyone know if this is possible and, if so, how to go about it? Pin
Not Active20-Apr-11 6:36
mentorNot Active20-Apr-11 6:36 
AnswerRe: Anyone know if this is possible and, if so, how to go about it? Pin
SledgeHammer0120-Apr-11 7:48
SledgeHammer0120-Apr-11 7:48 
GeneralRe: Anyone know if this is possible and, if so, how to go about it? Pin
DaleDaleM19-May-11 3:30
DaleDaleM19-May-11 3:30 
GeneralRe: Anyone know if this is possible and, if so, how to go about it? Pin
SledgeHammer0119-May-11 4:37
SledgeHammer0119-May-11 4:37 
GeneralRe: Anyone know if this is possible and, if so, how to go about it? Pin
DaleDaleM19-May-11 4:41
DaleDaleM19-May-11 4:41 
AnswerRe: Anyone know if this is possible and, if so, how to go about it? Pin
Ennis Ray Lynch, Jr.20-Apr-11 8:15
Ennis Ray Lynch, Jr.20-Apr-11 8:15 
GeneralRe: Anyone know if this is possible and, if so, how to go about it? Pin
DaleDaleM19-May-11 3:42
DaleDaleM19-May-11 3:42 
AnswerRe: Anyone know if this is possible and, if so, how to go about it? Pin
AspDotNetDev20-Apr-11 9:25
protectorAspDotNetDev20-Apr-11 9:25 
I'm not sure there is an easy way to do that, but that doesn't mean it's impossible. Here is one way to go about it.

You'll need to create a post-build event to call your code that inspects the assembly.

The code to inspect the assembly will first have to load up the just-built assembly. You can then get a list of all the types in that assembly (see here).

Next, you'll need to inspect the methods on each of those types:
C#
public void InspectMethod(MethodInfo mi)
{
    var body = mi.GetMethodBody();
    var ilBytes = body.GetILAsByteArray();
    // TODO: inspect the ilBytes.
}

The only way I can see to check calls to your method would be to manually inspect the IL. That's the part that I don't think will be easy, but it should be doable. You can read about that here: "Parsing the IL of a Method Body".

This sounds like a big pain in the rear, and I can think of very few scenarios where this would be necessary or even useful. Perhaps if you let us know what you're trying to accomplish by doing this, we could suggest another way.
Chris Maunder wrote:
Fixign now.
But who's fixing the fixign?

GeneralRe: Anyone know if this is possible and, if so, how to go about it? Pin
BobJanova20-Apr-11 23:32
BobJanova20-Apr-11 23:32 
GeneralRe: Anyone know if this is possible and, if so, how to go about it? Pin
DaleDaleM19-May-11 3:36
DaleDaleM19-May-11 3:36 
AnswerRe: Anyone know if this is possible and, if so, how to go about it? Pin
Luc Pattyn20-Apr-11 12:19
sitebuilderLuc Pattyn20-Apr-11 12:19 
GeneralRe: Anyone know if this is possible and, if so, how to go about it? Pin
DaleDaleM19-May-11 3:39
DaleDaleM19-May-11 3:39 
AnswerRe: Anyone know if this is possible and, if so, how to go about it? Pin
Luc Pattyn19-May-11 3:57
sitebuilderLuc Pattyn19-May-11 3:57 
GeneralRe: Anyone know if this is possible and, if so, how to go about it? Pin
DaleDaleM19-May-11 4:10
DaleDaleM19-May-11 4:10 
AnswerRe: Anyone know if this is possible and, if so, how to go about it? Pin
Luc Pattyn19-May-11 4:29
sitebuilderLuc Pattyn19-May-11 4:29 
QuestionVisual C# 2010 Express Pin
arkiboys20-Apr-11 5:10
arkiboys20-Apr-11 5:10 
AnswerRe: Visual C# 2010 Express Pin
#realJSOP20-Apr-11 5:23
mve#realJSOP20-Apr-11 5:23 
GeneralRe: Visual C# 2010 Express Pin
arkiboys20-Apr-11 11:50
arkiboys20-Apr-11 11:50 
Questionsaving items in the Listbox after adding /moving items from other Listbox/removing etc Pin
DivyaReddyM20-Apr-11 2:47
DivyaReddyM20-Apr-11 2:47 
AnswerRe: saving items in the Listbox after adding /moving items from other Listbox/removing etc Pin
BobJanova20-Apr-11 4:08
BobJanova20-Apr-11 4:08 
AnswerRe: saving items in the Listbox after adding /moving items from other Listbox/removing etc Pin
Blue_Boy20-Apr-11 4:13
Blue_Boy20-Apr-11 4:13 
QuestionRe: saving items in the Listbox after adding /moving items from other Listbox/removing etc Pin
ku_do_thien20-Apr-11 17:50
ku_do_thien20-Apr-11 17:50 
AnswerRe: saving items in the Listbox after adding /moving items from other Listbox/removing etc Pin
Blue_Boy20-Apr-11 21:47
Blue_Boy20-Apr-11 21:47 
AnswerRe: saving items in the Listbox after adding /moving items from other Listbox/removing etc Pin
Tarun.K.S20-Apr-11 22:17
Tarun.K.S20-Apr-11 22:17 
QuestionUser names can contain only alphabates Pin
DivyaReddyM20-Apr-11 2:37
DivyaReddyM20-Apr-11 2:37 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.