Tagged Questions
The underlying tag has no wiki summary.
10
votes
3answers
679 views
What is the underlying data structure for Python lists?
What is the typical underlying data structure used to implement Python's built-in list data type?
5
votes
3answers
299 views
C# underlying types of enums
What is the point of having
enum SomeEnum : byte // <----
{
SomeValue = 0x01,
...
}
when you have to make a cast just to assign it to the same type of variable as the enums underlying type?
...
2
votes
1answer
53 views
python QT underlying object deleted when import code
I have a simple program which create a QGraphicsScene / View then execute a given file (via the exec statement of python) with some globals function export.
My aim is to only define code of the scene ...
2
votes
2answers
638 views
Find Underlying Column Size Via NHibernate Metadata
Is there a way to use SessionFactory.GetClassMetadata(), or any other method you're aware of, to dynamically get the maximum size of a varchar column that underlies an NHibernate class' string ...
0
votes
1answer
38 views
Mvc MiniProfiler WrappedConnection Property
How could I get the value from the WrappedCOnnection Property of a ProfiledDbCOnnection?
I know the property exists however its modifier does not allow me to get it during my development;
I need to ...
0
votes
0answers
133 views
The underlying connection was closed: The connection was closed unexpectedly
I have a webservice designed in VS 2005 and .Net2 hosted on windows 2003 server.
i am accessing a third party webservice to access some data using web references from my application. The third party ...