Author Topic: .Net Add-in Test  (Read 5569 times)

JV

  • EA Novice
  • *
  • Posts: 12
  • Karma: +0/-0
  • I love YaBB 1G - SP1!
    • View Profile
.Net Add-in Test
« on: December 22, 2004, 01:17:21 am »
Would someone mind reverse engineering the simple c#
class below using the .Net Add-in and advise if the
resulting EA class contains all its methods and
properties.

When I do it the resulting EA class only contains the
first 2 properties i.e indexer1 and Indexer1

using System;

namespace JVTest.BusinessLogic
{
public class Class1
{
private int indexer1;
public int Indexer1  
{                                          
get                                    
{                                      
return indexer1;              
}                                      
set                                    
{                                      
indexer1 = value;              
}                                      
}
                                         
private string indexer2="";
public  string Indexer2  
{                                          
get                                    
{                                      
return indexer2;              
}                                      
set                                    
{                                      
indexer2 = value;              
}                                      
}  

public Class1()
{
}

public void method1()
{
}
}
}


Thanks John

Eve

  • EA Administrator
  • EA Guru
  • *****
  • Posts: 8085
  • Karma: +118/-20
    • View Profile
Re: .Net Add-in Test
« Reply #1 on: December 22, 2004, 01:13:56 pm »
I had no problems reverse engineering it with or without the addin.  (Using EA build 744)

Does your post mean that you're having trouble?

Simon

sargasso

  • EA Practitioner
  • ***
  • Posts: 1406
  • Karma: +1/-2
  • 10 COMFROM 30; 20 HALT; 30 ONSUB(50,90,10)
    • View Profile
Re: .Net Add-in Test
« Reply #2 on: December 22, 2004, 01:29:53 pm »
I too had no problems -- but what do you mean by the .net addin?
"It is not so expressed, but what of that?
'Twere good you do so much for charity."

Oh I forgot, we aren't doing him are we.

johnr

  • EA Administrator
  • EA User
  • *****
  • Posts: 41
  • Karma: +0/-0
    • View Profile
Re: .Net Add-in Test
« Reply #3 on: December 22, 2004, 03:20:32 pm »
The MDG Link for Visual Studio.NET, would be the guilty party in this case.

JV

  • EA Novice
  • *
  • Posts: 12
  • Karma: +0/-0
  • I love YaBB 1G - SP1!
    • View Profile
Re: .Net Add-in Test
« Reply #4 on: December 22, 2004, 11:59:04 pm »
Thanks for all your comments, particularly simonm who
prompted me to try using EA build 744. My problem is
solved using this version.

Thanks again
John