A typing system that enforces restrictions on which operations or methods may be called on an object based on type.

learn more… | top users | synonyms (1)

0
votes
0answers
12 views

Get strong types from a DataTable in .NET 3.5

I have no choice but to work with the following: I'm given a non-strongly-typed DataTable whose columns are known I have accompanying POCO model classes which can be annotated by attributes if ...
0
votes
1answer
29 views

Type checking with closure compiler not implicitly on?

I am compiling files and get working compiled code but the annotations seem to be completely ignored; no warnings no errors. Using calcdeps.py to compile my code with the following command: set ...
0
votes
1answer
43 views

Non-stringly typed reflection

Given the following code.. public static class Simulate { public static bool Boolean(bool b) { return b; } } I wanted to check if the Expression uses this static function. I ...
1
vote
2answers
105 views

Annotating JavaScript for the Closure Compiler questions

I have the following typedef in an externs file: /** @typedef ({eventNameArray: Array.<string>,eventArrayIndex: number}) */ var triggerNextData; Would like it to be used as a passed parameter ...
0
votes
1answer
47 views

Is there a way to have closure compiler warn about passed variables (strong type) AND use jquery?

I have a simple example: var obj = { /** * @param {number} inp * @returns {number} returning number plus one */ func: function(inp) { return inp++; }, c: 'hello', q: null }; ...
0
votes
5answers
116 views

C code iterators incrementing by sizeof(int) instead of by bytes

Could somebody explain exactly what the following C code does please? Specially the first line and the iterated line? int * p = &my_numbers[0]; int i; int j = 0; for (i = 0; i < 6; i++) { ...
1
vote
1answer
71 views

Erlang typing discipline

Does Erlang feature strong typing or weak typing? According to this definition of strong typing, looks like that Erlang features strong and weak typing at the same time. Is my understanding correct?
1
vote
0answers
96 views

How do you display data in view of a Typed DataSet (XSD)?

I am experimenting using typed DataSet and I have a simple application using the NorthWind database called "Main.mdb" and I have a Model "MainDataSet1.xsd" that I am trying to use to list all items in ...
-8
votes
6answers
286 views

Is C# a strongly typed or a weakly typed language? [duplicate]

Can someone please clarify if C# a strongly typed or a weakly typed language? And explain the answer why. if I have a function called concat that can take any object is this then considered weakly ...
1
vote
1answer
727 views

ASP.NET Web Forms (4.5) Strongly Typed Model Binding - DropDownList in InsertItemTemplate of ListView

Note: This is ASP.NET Web Forms Model Binding in .NET 4.5 and NOT MVC. I am using the new Strongly Typed Model Binding features of ASP.NET Web Forms (4.5) to produce a list of items that can be ...
2
votes
1answer
91 views

Using Dapper to bind with a strongly typed model with additional dynamic properties

We are hopefully moving over to use Dapper to provide the object relation mapping to our business models. Along with these data models, we often encounter custom fields (not known at runtime) which ...
2
votes
1answer
84 views

Function with multiple return types: is it possible?

I have the following bit of code, which I'd like to return either a boolean or a tuple. (The functions isvariable and dont_care both return booleans, fyi) let match_element (a, b) = if a = b then ...
0
votes
0answers
142 views

Iterating (looping) through a TableAdapter

We are looking to iterate through a TableAdapter and pull out the values of each row in the TableAdapter from a particular column called ClassName. We will add additional columns later. We have ...
-4
votes
1answer
56 views

Cannot use sentinel value in a method using generics [closed]

So this wont compile, is there any way around this? Because I can't determine what sentinel value to use since its a generic type and its "unchecked" class Example <T> { public T ...
3
votes
1answer
118 views

Does OCaml have polymorphism?

Since OCaml has different operations for multiplying integers and doubles, how it can be object-oriented? Doesn't this mean OCaml has no polymorphism?
1
vote
1answer
500 views

How to get a strongly typed linq query of a data table and database

I have seen other solution that resemble my problem very closely but somehow it doesn't work for me. I have a linq query to a db with a join to a datatable which is not strongly typed. I need a ...
1
vote
1answer
85 views

Compile time support for Autofac

We investigate DI containers for our project. Right now we choose between Autofac and Castle Windsor. There is something that is very important for us: Strongly type registration for Autofac. ...
1
vote
1answer
77 views

Should View Models always contain the inputs for forms in that view?

This question is related to this one, but I think in my example I have detail which may alter answers. Say I have a User action on a Controller that renders a View for displaying data about a ...
3
votes
3answers
276 views

Passing strongly typed property name as argument

I have a collection of IEnumerable<School> that is being passed to an extension method that populates a DropDownList. I would also like to pass the DataValueField and DataTextField as an ...
3
votes
3answers
391 views

Emulating delegates with free generic type parameters in C#

This is a hard question about language design, patterns and semantics. Please, don't down-vote just because you don't see the practical value. First, let's think about functions and their parameters. ...
0
votes
0answers
87 views

How can we use the new ASP.NET 4.5 Strongly typed data controls in an empty web project?

Can we do this or is it only possible in an MVC web application project? If anyone has any instructions on this can they help me out? I am just trying to experiment but I keep getting an error: ...
2
votes
3answers
70 views

ASP.NET refering an image or asp file in a Strongly Typed fashion

Many times we need to refer another file on the server. Whether it's just an image, or another asp page. For example: if (success) { img1.ImageUrl = "RightArrow.jpg" } The problem here is, ...
1
vote
4answers
192 views

How to unit test C# code that's expected to fail compilation for negative testing? [closed]

We're meant to generate a string output that's required to adhere to a particular set of syntactical rules. I created an object model in order to enforce that syntax via C#'s strong-typing with the ...
2
votes
1answer
78 views

use a type object with strongly typed methods

I'm not even sure if this would be possible, but here is the problem I'm facing. Basically I have a strongly typed methods as follow ConsoleHelper.Start<T>() where T:IService What I would ...
2
votes
1answer
591 views

Difference between Strong vs Static Typing AND Weak vs Dynamic Typing

From What I understand, does is dynamic typing the same as weak typing and strong typing is the same as static typing. Whats the difference? Thanks
0
votes
1answer
62 views

Typed vs scripting languages. Should i jump on the bandwagon of js+php? [closed]

Is it me or are scripting languages becoming more and more popular compared to stronly typed languages in the coding world? Big companies like google or facebook seems to use php and javascript ...
2
votes
2answers
163 views

Should a LINQ projection be strongly typed

I have an aggregated data view in an MVC project which displays the totals per month broken down by audit status. The controller code sets this up using a simple LINQ projection into an anonymous ...
1
vote
3answers
1k views

ios confused about strong/weak references

I've looked through the questions on strong/weak references, and understand the reason for using weak (the parent to child relationship). However, I'm confused about specific scenarios where a parent ...
19
votes
7answers
3k views

Is Python strongly typed?

I've come across links that say Python is a strongly typed language. However, I thought in strongly typed languages you couldn't do this : bob = 1 bob = "bob" I thought a strongly typed language ...
4
votes
4answers
228 views

Strongly typed client side languages?

There are plenty of options for powerful server side languages, but I can't think of any strongly typed, truly powerful client side languages. Javascript does a lot with forms, basic math, and ...
3
votes
2answers
319 views

is this an example of weak typing or dynamic typing

Is the quality of a language where it's not required to declare a variables type (such as PHP and Perl) known as weak typing or dynamic typing? I'm having trouble getting my head around the two terms. ...
0
votes
3answers
148 views

Is there any link between functional programming and strong typing?

All of the "pure" functional languages are strong typed. Is there any link between those?
4
votes
1answer
3k views

mvc4 bundling strongly typed bundles

So MVC 4 introduces script and style bundling. Which allows for this: public static void RegisterBundles(BundleCollection bundles) { bundles.Add(new ScriptBundle("~/bundles/mobile").Include( ...
0
votes
1answer
241 views

T4MVC - Actions with model binding - how to get a fully qualified strongly-typed URL string to another Controller?

I'm running Visual Studio 2012 RC with the .Net 4.5 bits with T4MVC. I'm in an Action method for my AccountController and I want to generate a fully qualified URL for another controller which looks ...
2
votes
1answer
46 views

bbvEventBroker strongly typed and without magic strings

I would like to use the bbvEventBroker with Ninject, however I am worried about the use of magic strings to connect publisher and subscriber. Is there a strongly typed way to do it without magic ...
0
votes
2answers
651 views

Strongly-Typed Model Not Posting from Partial View

I have an MVC3 page comprised of the following components: ProfileController - Contains all of the actions and loads all of the views below /Profile/Index - This action method creates an instance of ...
0
votes
0answers
172 views

Strong typed view don't create a textbox field MVC 3

I have a problem - when i create strong-typed view for Controller Action needed fields don't auto generated. My entity is : public class Book : Entity { [Required(ErrorMessage = "Enter the Title ...
1
vote
1answer
101 views

Does strong typing imply type safety?

I'm reviewing lecture notes for a compilers course, and one of the slides says: Strongly typed languages guarantees that accepted programs are type-safe However, I can't find any evidence of ...
0
votes
0answers
103 views

Windows forms strongly-typed control binding

Good day! I have been successfully using a strong-typed binding approach taken from this SO post. I would like to ask 2 related questions here if possible... The BindEnabled<T> method from the ...
0
votes
1answer
48 views

How to read the content of List in a View in ASP.NET MVC3

So I have this code: public ActionResult Agregar(int id) { Producto producto = db.Productos.Find(id); var list = new List<Carrito> { new ...
0
votes
1answer
1k views

The ViewData item that has the key 'message' is of type 'System.String' but must be of type 'IEnumerable<SelectListItem>'

I am trying to implement a MVC application that has a view, controller and view model in order to populate a dropdown list from a database and then use the data for the selected item in a [HttpPost]. ...
0
votes
1answer
81 views

ClassCastException org.jdesktop.DataSet.DataRow to TypedDataRow

I have this typed DataRow: import org.jdesktop.dataset.DataRow; public class MainDataRow extends DataRow { private MainDataTable baseDataTable; protected MainDataRow(MainDataTable dt) { ...
1
vote
1answer
1k views

Strongly type resource files in C#

I have a windows application that accesses a file in a class library project. public static class Global { private static ResourceManager ResourceManager { get; set; } static Global () { ...
3
votes
4answers
402 views

Strong-typing for strings or other sealed classes

I am phrasing my example in generic terms because it gets the point across without having to go into my specific problem details. Suppose you had a bunch of methods that take strings as parameters. ...
4
votes
4answers
152 views

How to make a reference to a method name on an interface strongly typed

Sorry if this has been answered already, but I think I actually lack the formal education to ask this question properly, and hence also lack the correct criteria to search for it successfully. I have ...
0
votes
1answer
157 views

Truly Strongly Typed Type Providers

I don't get how to provide strongly typed types through type provider. All the exemples I see have the same type as a result, independently of the input. MiniCsvTypeProvider provides only double. ...
5
votes
3answers
332 views

template argument deduction with strongly-typed enumerations

If I have a normal (weak) enumeration, I can use its enumerated values as non-type template parameters, like so: enum { Cat, Dog, Horse }; template <int Val, typename T> bool magic(T &t) { ...
0
votes
2answers
82 views

reducing errors using boolean arrays in C++

I'm working on a number of boolean variables that I am now converting into boolean arrays: bool bool_var -> bool bool_var[SIZE] This leads to error prone behavior, since if previously: if ...
15
votes
1answer
277 views

typing recursive modules

In Leroy's paper on how recursive modules are typed in OCaml, it is written that modules are checked in an environment made of approximations of module types: module rec A = ... and B = ... and C = ...
8
votes
2answers
1k views

Compile Time Reflection in C#

I frequently write C# code that has to use magic strings to express property names. Everyone knows the problems with magic strings. They are very difficult to refactor, they have no compile time ...

1 2 3 4 5