Tagged Questions
2
votes
2answers
568 views
C++ templates and ambiguity problem
I have a subset of a pointer class that look like:
template <typename T>
struct Pointer
{
Pointer();
Pointer(T *const x);
Pointer(const Pointer &x);
template ...
0
votes
1answer
88 views
ASP.NET MVC error: The call is ambiguous between the following methods or properties
I have a problem.
In my View of a product I have a button to add it to cart which looks like this:
<div>
<% using(Html.BeginForm("AddToCart", "Cart")) {%>
<%: Html.HiddenFor(x ...