S
sklett
I'm moving some functions that are littered in various inappropriate classes
into a single, static utility class.
I ran into a problem with this line:
<code>
Assembly thisAssembly = Assembly.GetAssembly(this.GetType());
</code>
Looks like I don't have access to the 'this' reference (duh), but I can't
find out how else to use GetType() on a static class? Anyone have any
ideas?
into a single, static utility class.
I ran into a problem with this line:
<code>
Assembly thisAssembly = Assembly.GetAssembly(this.GetType());
</code>
Looks like I don't have access to the 'this' reference (duh), but I can't
find out how else to use GetType() on a static class? Anyone have any
ideas?