0
votes
2answers
35 views
Strongly Typing a LINQ Query using multiple keys of complex objects
I can't figure out how to define the object used in my LINQ grouping query to allow them to be strongly type.
I've build a grouping query that uses two complex objects as keys. T …
2
votes
1answer
89 views
Better way of doing strongly-typed ASP.NET MVC sessions
I am developing an ASP.NET MVC project and want to use strongly-typed session objects. I have implemented the following Controller-derived class to expose this object:
public clas …
4
votes
7answers
271 views
Is there a good strongly typed way to do PropertyChanged events in C#?
It must be a somewhat common event to change the name of a property and expect the Rename functionality in Visual Studio to take care of all the necessary renaming, except for the …
7
votes
9answers
720 views
Enforce strong type checking in C (type strictness for typedefs)
Is there a way to enforce explicit cast for typedefs of the same type? I've to deal with utf8 and sometimes I get confused with the indices for the character count and the byte cou …
-3
votes
6answers
217 views
(strongly vs weakly) typed AND (statically vs dynamically) typed languages and Moore’s law
Hello all, I do not know how many faces this problem. If I do programming in weakly/dynamically typed language like python,php,javascript for few days I lose touch with strongly ty …
0
votes
2answers
67 views
Is it possible to refer method like property? Like Validate(x => x.Property)
Because I need to build a very strongly-typed & type-safed project for Asp.net MVC. But I found that a lot of syntax in View page isn't type-safed variable. Please look at the …
1
vote
2answers
97 views
Initializing strongly typed objects in LINQ to Entities
I have a plain old CLR object which is essentially a wrapper for two entity framework objects, I'm doing this so I can pass this wrapper object to a strongly typed view in the MVC …
1
vote
6answers
414 views
Type limitation in loop variables in Java, C and C++
Why Java, C and C++ (maybe other languages also) do not allow more than one type on for-loop variables? For example:
for (int i = 0; i < 15; i++)
in this case we have a loop …
0
votes
3answers
201 views
ASP.NET MVC - How to create a strongly-typed view from classes in referenced class-library?
Hi,
i'm trying to create a strongly-typed view using Visual Studio 2008. I can right-click a controller action and choose: Add view... In the next dialog window there is an option …
4
votes
5answers
127 views
Would javascript and similar scripting languages benefit from being strongly typed?
Just had my mind going today. I spent some time in IE debug mode, browsing the web as usual, and oh boy do I see many errors :) Most of these errors are because some value are of a …
0
votes
4answers
139 views
Python Strongly type lists.
Hello, I am using eclips for python and i am facing a problem. I have many classes with many properties and want a list of objects from one of my declared classes. The problem is:W …
0
votes
3answers
607 views
My DLLs are strong named, but WSPBuilder reports they are not
WSPBuilder
Version: 0.9.8.0830
Created by Carsten Keutmann
GPL License 2007
Install and deploying [MYDLL]
Unable to deploy solution
Inner exception(1): This solution contains one …
4
votes
3answers
162 views
Looking for a fast, compact, streamable, multi-language, strongly typed serialization format
I'm currently using JSON (compressed via gzip) in my Java project, in which I need to store a large number of objects (hundreds of millions) on disk. I have one JSON object per li …
1
vote
2answers
108 views
NHibernate + ASP.Net MVC - how to order data in strongly typed manned according to user selected field
I'm presenting data for users in a grid (ExtJS) with remote sorting and paging. Let's say I have a grid with some Orders. Order entity looks like Order{OrderNumber, Customer, Date, …
1
vote
3answers
227 views
Creating an array that contains only objects of a given class
Ok, so I have the code below (Objective-C FYI) and I was wondering if I want to create an NSMutableArray of c_data objects, how would I go about doing that? It's sort of like decla …
