vote up 0 vote down star

I have some functions here that for example are defined as

private int WriteLogikParameterTyp(FileStream filestream)

which i can not change. I want them to write into a MemoryStream Object. Is this possible?

flag

75% accept rate

5 Answers

vote up 1 vote down check

No.

FileStream is a concrete implementation.

But it's a private method so should be easy enough to change since you can find all internal uses? Suggest replacing method signature with Stream rather than FileStream.

Well... unless you create a tempory file, write to it then read it into memory.

link|flag
That was just an example. That one is private and others are public. And there are a lot of them. – Andre Jan 28 at 10:44
vote up 0 vote down

Suggestion;

Rename the method like this

private int WriteLogikParameterTyp_Ex(Stream stream);

Then recreate the original signature like;

private int WriteLogikParameterTyp(FileStream filestream)
{
     return WriteLogikParameterTyp_Ex(filestream);
}
link|flag
Why not simply change the method signature? It would not break existing using code since FileStream is derived from Stream... – configurator Jan 28 at 10:56
I'm assuming since he "can't change the method" he can't make it delegate either:). May the fastest finger win! :) – Gishu Jan 28 at 11:40
vote up 0 vote down

No. FileStream doesn't expose a constructor that can be called so you can't inherit from it in order to emulate it.

link|flag
vote up 0 vote down

No.

If you do not have access to them, you could use reflector to find out how they work and implement your own version for a MemoryStream. Whether this is legal is another matter...

link|flag
"Whether this is legal" - I'm sure nobody would arrest him :) – configurator Jan 28 at 10:54
vote up 1 vote down

Since you can't change the function signature to accept a more generic type.. I'd suggest writing out to a temporary file and then reading the contents into a MemoryStream instance.

link|flag
Apologies; I beat you to the tempory file solution. We must have hit 'submit' at the same time :) – Ian Quigley Jan 28 at 10:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.