10 lines
179 B
C#
10 lines
179 B
C#
|
namespace Obfuz.Rename
|
|||
|
{
|
|||
|
public interface INameScope
|
|||
|
{
|
|||
|
void AddPreservedName(string name);
|
|||
|
|
|||
|
string GetNewName(string originalName, bool reuse);
|
|||
|
}
|
|||
|
}
|