fad71374d0
Former-commit-id: a536d4f20e27294d8bbc2184d75f3a22364f7ba1
10 lines
183 B
C#
10 lines
183 B
C#
namespace MyNamespace {
|
|
public class MyClass {
|
|
public string SomeMethod<T>() { return string.Empty; }
|
|
|
|
#if V2
|
|
public string SomeMethod() { return string.Empty; }
|
|
#endif
|
|
}
|
|
}
|