Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
5answers
7k 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 projects. What I have ...
13
votes
12answers
4k views

Should I use internal or public visibility by default?

I'm a pretty new C# and .Net developer. I recently created an MMC snapin using C# and was gratified by how easy it was to do, especially after hearing a lot of horror stories by some other developers ...
12
votes
2answers
347 views

In .NET, what is the internal implementation of a delegate?

I understand that a declaration of a delegate is something like this: public delegate int PerformCalculation(int x, int y); However, there must be more going on. The purpose of the delegate is to ...
11
votes
3answers
3k views

Internal vs. Private Access Modifiers

What is the difference between the internal and private access modifiers in C#?
11
votes
5answers
684 views

C#: Why can't my public class extend an internal class?

I really don't get it. If the base class is abstract and only intended to be used to provide common functionality to public subclasses defined in the assembly, why shouldn't it be declared internal? ...
9
votes
4answers
11k views

C# - How to access internal class from external assembly

Having an assembly which I cannot modify (vendor-supplied) which have a method returning an object type but is really of an internal type. How can I access the fields and/or methods of the object ...
8
votes
4answers
216 views

C# - I'm trying to understand Microsoft's DoubleUtil.AreClose() code that I reflected over

If you reflect over WindowsBase.dll > MS.Internal.DoubleUtil.AreClose(...) you'll get the following code: public static bool AreClose(double value1, double value2) { if (value1 == value2) ...
7
votes
5answers
200 views

C# assemblies, whats in an assembly?

Hey guys, i am trying to understand the internal access modifier in C#. I can't seem to understand what an assembly is exactly, and what part of my program is held inside that assembly. I was trying ...
7
votes
5answers
293 views

What do you choose, protected or internal?

If I have a class with a method I want protected and internal. I want that only derived classes in the assembly would be able to call it. Since protected internal means protected or internal, you ...
7
votes
2answers
4k views

How to access internal class using Reflection

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 class. How can I write a code to ...
6
votes
3answers
780 views

Public and Internal members in an Internal class?

Ok, so this may be a bit of a silly question, and there's certainly the obvious answer, but I was curious if I've missed any subtleties here. Is there any difference in terms of visibility/usability ...
6
votes
3answers
651 views

How do I implement members of internal interfaces

I have been refactoring the codebase of the project that I am currently on so that classes/interfaces which are not useful beyond the confines of the assembly should be declared as internal (rather ...
5
votes
1answer
599 views

Basic internal links don't work in honeycomb app?

Internal links do not seem to be working in Android version 3 in my published app. My app targets Froyo at this point. The app works fine on tons of phones, but my new Galaxy Tab can't handle the ...
5
votes
1answer
145 views

Can I make a type “sealed except for internal types”

I want to make a type that can be inherited from by types in the same assembly, but cannot be inherited from outside of the assembly. I do want the type to be visible outside of the assembly. Is this ...
5
votes
2answers
1k views

Accessing functions bound to event handlers with jQuery

With jQuery you can bind functions to an event triggered on a DOM object using .bind() or one of the event handler helper functions. jQuery have to store this internally somehow and I wonder if is it ...
5
votes
9answers
3k views

What are the steps followed by sql engine to execute the query..??

My question is not how to use inner join in sql. I know about how it matches between table a and table b. I'd like to ask how is the internal working of inner working. What algorithm it involves? ...
4
votes
1answer
1k views

Sending DTMF tones over the uplink in-call

I'm working on a project that requires my app to be able to send DTMF tones on the voice's uplink frequency during an active call. My 2 conditions are: We don't use a customized Android platform We ...
4
votes
3answers
1k views

C# set accessor accessible to all types in assembly, and get assessor only to derivated types. How to?

This property in a type with no access modifier (thus internal access): class SomeType { private int length; internal int Length { get { return length; } set length = value; } ...
4
votes
1answer
3k views

Android internal storage - what are the limits?

1) Our Android app will store data in a built-in SQLite DB. I see the DB can throw android.database.sqlite.SQLiteFullException, but there's no exact info in API what is the limit. Could anyone tell ...
4
votes
1answer
823 views

Hiding namespaces containing only internal types in a class library?

I have a class library that has a couple of namespaces containing only internal types. However, when using the class library in an application project, the namespaces shows up in intellisense, but of ...
3
votes
2answers
71 views

Manifest permission needed to copy files to the Android device internal area?

I would like to give the user the choice to copy files onto the Android device data directory as well as the external area. Can you tell me what I need to add to the manifest that will allow my app ...
3
votes
2answers
113 views

Android create folders in Internal memory issue

I have a little issue with creating folders for my application in Internal Memory. I'm using this piece of code : public static void createFoldersInInternalStorage(Context context){ try { ...
3
votes
2answers
687 views

How to install an apk stored in private storage of android application?

From my android app, I'm downloading an apk from the web, storing it in application's private storage (openFileOutput(FILENAME, Context.MODE_PRIVATE)) and trying to call the android package ...
3
votes
6answers
104 views

Is there anything like an Internal class in Java?

In C# you can mark a class as internal so that it is only accessible from within the same package. Is there anything similar in Java?
3
votes
4answers
9k views

Android create file on internal storage

I want to save a file on internal storage into a specific folder. My code is File mediaDir = new File("media"); if (!mediaDir.exists()){ mediaDir.createNewFile(); mediaDir.mkdir(); } File f = ...
3
votes
6answers
167 views

When defining a class as internal, do you define what would usually be public fields as internal?

When defining a class as internal, do you define what would usually be public fields as internal? Or do you leave them as public? I have a set of classes with public/private methods that I have ...
3
votes
1answer
3k views

android internal phone storage

how can you retrieve yours phone internal storage from an app? I found memoryinfo, but it seems that returns information on how much memory your currently running tasks. I am trying to get my app to ...
3
votes
3answers
176 views

PHP Architecture: How do I do that?

I need some help understanding internal workings of PHP. Remember, in old days, we used to write TSR (Terminate and stay resident) routines (Pre-windows era)? Once that program is executed, it ...
3
votes
3answers
955 views

How do I set a breakpoint inside C# PresentationFramework.dll?

This might be a shot in the dark, but, how would I go about setting a breakpoint inside the following internal static method in PresentationFramework.dll? ...
3
votes
2answers
109 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 class InternalTypeA ...
3
votes
7answers
6k views

What is the equivalant of a 'friend' keyword in C Sharp?

What is the equivalant of a 'friend' keyword in C Sharp? How do I use the 'internal' keyword? I have read that 'internal' keyword is a replacement for 'friend' in C#. I am using a dll in my C# ...
3
votes
2answers
116 views

internal methods and data structures .

if i have a protected method, can i pass in a parameter where the data type is declared internal?
3
votes
4answers
221 views

ReadOnly vs Property within Assembly Question/Conundrum

How can I make a Property "ReadOnly" outside the Assembly (DLL) for people using the DLL but still be able to populate that property from within the assembly for them to read? For example, if I have ...
2
votes
2answers
128 views

Reading pdf stored in internal Memory(The File path is not Valid)

I wanna open a pdf stored in Mobile internal Memory... i'm trying to pass the path of the file to the Uri ..but it keep showing me this error "The file path is not Valid" but i'm sure that i'm putting ...
2
votes
0answers
82 views

Android move to SD card behavior

I have an application that downloads most of the resources from the internet during run time. Most of those resources are images. I don't want the user to see those images in the gallery application ...
2
votes
1answer
77 views

Getting reference to internal telephony Connection instance

Can I get a reference to the com.android.internal.telephony.Connection instance of an incoming call? Can it be done before the call has been accepted? If not, can I get information of an incoming ...
2
votes
1answer
87 views

I/O benchmarking on Android

I created my own benchmark for I/O but I cannot understand if it's real or not. Do you have a sample code to show me about performances concerning i/o? Any suggestion to optimize it? thank you in ...
2
votes
1answer
189 views

Android saving data in Internal Storage NullPointerException

I have a little problem with writing a file in internal storage from my application.I'm gettin a null pointer exception,but can't find the way to fix it..and actually can't understand which one of the ...
2
votes
5answers
129 views

Where to safely put large data in android

I have to store a lot of images that have to be downloaded from the web server. The size of the images might be 80Mb. So I want a guidance where to store them, whether in internal or external storage. ...
2
votes
2answers
296 views

Flex applying the sort/filter on an arraycollection without dispatching event

I have a object that is extended from arraycollection. This object has to access and manipulate the arraycollections source object. When this happens, the local sorted/filter copy of data goes out of ...
2
votes
1answer
98 views

Integrating alfresco with existing infrastructure

We have many custom and off-the-shelf applications to manage document mgmt like scanning, indexing, storage,workflow etc in our company, We want to get started with Alfresco to completely manage our ...
2
votes
3answers
461 views

Internal data post [Kohana 3.1]

In Kohana 3.1.x framework. What are the benefits to send data with internal requests like this $post = Request::factory('module/data') ->method(Request::POST) ...
2
votes
3answers
439 views

C# internal interface with internal implementation

I've struck upon something I don't really understand. I have a project, where I have an interface that is internal. The class that implements that interface is also internal. In the implementation of ...
2
votes
1answer
337 views

ajax call returns 500 internal error

i have some $.getJSON() calls which work locally just fine but when i upload the script on live server it just throws 500 internal error , i also have some other ajax calls(not json) where some work ...
2
votes
3answers
134 views

Making a class testable

So I have a class called User. It has an internal constructor. I want to create a User object though so I can mock it like this: public ISessionManagerInstance MockedSessionManager() { var ...
2
votes
1answer
2k views

Consuming WCF / REST service using JQuery ajax post

I am trying to post the data usign $.ajax, but I am getting failure message 400 error. Following is the code: $.ajax({ url: "http://192.168.1.9:150/Service.svc/usrregistration", ...
2
votes
1answer
1k views

How to get FileInputStream for internal memory files in Android ? The file is in my custom folder made in application space

How to get FileInputStream for file in internal memory in android which is not inside applications default file directory. I have created new directory in my application space. So ...
2
votes
1answer
231 views

Does PHP Eclipse Internal Browser usually have CSS issues?

I was trying out the PHP Eclipse Internal Browser. I set the Internal Browser to the Chrome Web Browser. My Steps: Clicked Windows > Web Browser > Chrome (the other options of course were default, ...
2
votes
6answers
285 views

c++ vector How to change internal pointer

I would like to serialize vector. And I dunno how to change pointer of vector.. To make it simple, let's say I have a vector something like: vector<char> v; And I have this pointer: char* c ...
2
votes
1answer
266 views

XCode - Internal Error when starting a specific project

It first happend, when I changed something with the .xib-File and somehow I cannot find anything similiar (enough) on the internet that might help. And of course I did try turning it off and on again! ...

1 2 3 4