2
votes
2answers
41 views
How to limit subclassing of public abstact class to types in same assembly and thus allow protected members typed to internal types.
This question is similar to c# internal abstract class, how to hide usage outside but my motiviation is different. Here is the scenario
I started with the following:
internal cl …
1
vote
3answers
93 views
Accessing Tomcat Internals from Servlet (or Filter)
I would like to get access to the Tomcat internal data from a servlet (or filter). In particular, I would like to read information about busy threads, from thread pool manager. So, …
0
votes
2answers
74 views
How Do I make a simple .htaccess internal redirect Catch All script while forwarding POST data?
I just want to catch all requests and forward them internally to my catchall page with all POST data intact
Catch all page:
http://www.mydomain.com/addons/redirect/catch-all.php
…
1
vote
2answers
57 views
ruby equivalent of c#’s internal keyword?
in C# an "internal" class or method can only be called from within the assembly that it is located... i know Ruby doesn't have "assemblies" or any kind of real package like them (o …
0
votes
1answer
44 views
SQLite gurus: how can I display very detailed metadata about a file?
I have a situation where a simple query against a table is returning incorrect values in Flex, but not in other GUI front-ends to SQLite.
select title from ttl where ttl.ttl = 140 …
1
vote
2answers
46 views
There is any way to access directly a dll internal classes without copyright infringment?
I need to use some of the Microsoft.SqlServer.Types library internal classes. This is a .NET dll, which is easily disassembled to the language of my choice.
So far I could copy it …
-1
votes
0answers
79 views
Where can I download a male anatomy 3D model? [closed]
I've got a 3D animation project coming up in the next few days where I need to show a medical diagram of the internal organs of a male human body. I don't have enough time to creat …
0
votes
0answers
44 views
Compiler Error- only when compiling from the command line
error CS0583: Internal Compiler Error (0xc0000017 at address 7C812AFB): likely culprit is 'IMPORT'.
An internal error has occurred in the compiler. To work around this problem, try …
1
vote
3answers
291 views
C# class design without using “Internal” or “Static”?
I have a bunch of data I want to instantiate in a class, and for each variable I want to ensure a specific set of methods are also defined. IE:
[TypeA] VarA
[TypeB] VarB
[TypeC] V …
1
vote
4answers
107 views
Help eliminating friends/internals
I often see people say things like "if you need friend/internal then your design is wrong", could someone tell me how to redesign the following code to eliminate the internal in Ch …
1
vote
1answer
80 views
InternalsVisibleTo causes CS0246 error: The Type or Namespace could not be found.
I am trying to enable one assembly to access another assembly's internal classes by adding
[assembly:InternalsVisibleTo("assembly-name")]
to the second assembly. However, this …
0
votes
0answers
32 views
How do I create an internal constructor in typed dataset?
The application I'm working on exposes a set of typed datasets via an API written in C#. Some of the datasets should never be created by the client, but should be instansiated by t …
7
votes
5answers
2k views
Accessing internal members via System.Reflection?
I'm trying to Unit Test a class that has many internal functions. These obviously need testing too, but my Tests project is seperate, mainly because it covers many small, related p …
0
votes
2answers
228 views
How to access internal class using Reflection
Hello there,
How can I access an internal class of an assembly?
Say I want to access System.ComponentModel.Design.DesignerHost. Here the DesignerHost is an internal and sealed cla …
1
vote
4answers
190 views
Accessing .exe file within .jar
Hi everyone!
I recently created an application and successfully jarred this to c:/my/folder/app.jar. It works like a charm in the following case [Startup #1]:
Open cmd
cd to c:/ …
