
Hi, Can someone help on a problem...
I have a class :
public class AAA
{
string b;
public void myMethod(string c)
{
if( c == b)
{
c = null;
}
}
}
I wnat to separate this class to only allow the user to edit the code inside method myMethod. What is the correct way to verify where the method starts and where it ends.
Thanks
PS:I have the C# Addon.
I have a class :
public class AAA
{
string b;
public void myMethod(string c)
{
if( c == b)
{
c = null;
}
}
}
I wnat to separate this class to only allow the user to edit the code inside method myMethod. What is the correct way to verify where the method starts and where it ends.
Thanks
PS:I have the C# Addon.