internal

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? I don't want the abstract class to be visible to code outside the assembly. I don't want external code to know about it. ...

Simple HTML internal link question

Weired, simple HTML stuff didn't work as expected. On page 1, a Railo script named page1.cfm, it has the following line: <a href="page2.html#part2">Go To Page 2, Part 2</a> so, we expect the link would bring the user to the page2.html page's Part 2 section and yes this section and the internal link tag exists on page2.html. But tested w...

Internal link to TextView in Android?

I find myself stuck in something I think would be really easy to solve. My app contains a lot of TextViews and ImageViews, and one TextView contains the content listed. I want each element of the displayed content internally linked to the respective TextView. Probably the TextView isn't the right element to use, but I have trouble findin...

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! More details from the alert window I got: Internal Error File: /SourceCache/DevToolsBase/DevToolsBase-1691/pbxindex/PBXProjectIndex.m ...

Flash AS3 - Internal namespace modifier

Hi, I am working on a library that I wish to hide the internals of to the outside world. I figured I can use 'internal class' where ever I wanted to hide the class, How ever to my understanding, declaring a class in namespace test.NS1 means it can only access classes defines in test.NS1 and nothing else. For example, (both in the sa...

Internal vs. Private Access Modifiers

What is the difference between the internal and private access modifiers in C#? ...

Entity Framework BuildContainsExpression Causes Internal .NET Framework Data Provider error 1025

Hi, I'm trying to get the following LINQ query to work against the database (3.5 SP1): var labelIds = new List<int> { 1, 2 }; var customersAggregatedTransactionsByType = (from transactions in context.TransactionSet from customers in context.CustomerSet.Where(LinqTools.BuildCont...

Does a long internal stylesheet affect SEO?

I'm building a site with a lot of similar css between pages. I've decided that a good approach would be to have the css generated as strings by php functions (with parameters) and outputed as an internal stylesheet in every page that i serve. The benefits: this way if i make a change it will reflect throughout the entire site without h...

c++ vector How to change internal pointer

hi guys, I would like to serialize vector. And dunno how to change pointer of vector.. To make it simple let's say I have a vector smt like: vector<char> v; And I have this pointer: char* c = { 'v', 'e', 'c', 't', 'o', 'r' }; And I would like my vector v's internal pointer points my char* c: &v[0] -> c How can I adjust vector...

Using internal sun classes with javac

Is there a way to disable restrictions of javac 1.6.0_22 that prevent me from using JRE internal classes like sun.awt.event.* ? I'm not looking for: an explanation why it is forbidden. suggestion to use different classes suggestion to use reflection suggestion to use ecj/eclipse I just want to know if it is possible or not, and if i...