How to solve this error: No best type found for implicitly-typed array
Why am I not able to use the boolean parameter in this statement?
It's showing me this error:
No best type found for implicitly-typed array
public IEnumerator GetEnumerator()
{
yield return new { "ABC123", "9999", "9999", "1000", "20180427120717123", false };
}
c# boolean
add a comment |
Why am I not able to use the boolean parameter in this statement?
It's showing me this error:
No best type found for implicitly-typed array
public IEnumerator GetEnumerator()
{
yield return new { "ABC123", "9999", "9999", "1000", "20180427120717123", false };
}
c# boolean
add a comment |
Why am I not able to use the boolean parameter in this statement?
It's showing me this error:
No best type found for implicitly-typed array
public IEnumerator GetEnumerator()
{
yield return new { "ABC123", "9999", "9999", "1000", "20180427120717123", false };
}
c# boolean
Why am I not able to use the boolean parameter in this statement?
It's showing me this error:
No best type found for implicitly-typed array
public IEnumerator GetEnumerator()
{
yield return new { "ABC123", "9999", "9999", "1000", "20180427120717123", false };
}
c# boolean
c# boolean
edited Nov 20 '18 at 10:40


D Manokhin
584219
584219
asked Nov 20 '18 at 10:34
user10489212user10489212
476
476
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
If you want a mixed array: just don't be vague:
yield return new object { "ABC123", ..., false }
The difference is the new object {...}
instead of new {...}
, which means that the compiler doesn't need to try to figure out what you meant.
add a comment |
It seems, that you want to enumerate object
s:
public IEnumerator<object> GetEnumerator() {
yield return new object { "ABC123", "9999", "9999", "1000", "20180427120717123", false };
yield return new object { "ABC123", "9999", "9999", "1000", "20180427120717123", true };
}
I'm using the IEnumerator inside a class, where I reference it into the Source Attribute for a Mock object as part of unit test.
– user10489212
Nov 20 '18 at 10:50
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53391073%2fhow-to-solve-this-error-no-best-type-found-for-implicitly-typed-array%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
If you want a mixed array: just don't be vague:
yield return new object { "ABC123", ..., false }
The difference is the new object {...}
instead of new {...}
, which means that the compiler doesn't need to try to figure out what you meant.
add a comment |
If you want a mixed array: just don't be vague:
yield return new object { "ABC123", ..., false }
The difference is the new object {...}
instead of new {...}
, which means that the compiler doesn't need to try to figure out what you meant.
add a comment |
If you want a mixed array: just don't be vague:
yield return new object { "ABC123", ..., false }
The difference is the new object {...}
instead of new {...}
, which means that the compiler doesn't need to try to figure out what you meant.
If you want a mixed array: just don't be vague:
yield return new object { "ABC123", ..., false }
The difference is the new object {...}
instead of new {...}
, which means that the compiler doesn't need to try to figure out what you meant.
answered Nov 20 '18 at 10:35


Marc Gravell♦Marc Gravell
780k19421362543
780k19421362543
add a comment |
add a comment |
It seems, that you want to enumerate object
s:
public IEnumerator<object> GetEnumerator() {
yield return new object { "ABC123", "9999", "9999", "1000", "20180427120717123", false };
yield return new object { "ABC123", "9999", "9999", "1000", "20180427120717123", true };
}
I'm using the IEnumerator inside a class, where I reference it into the Source Attribute for a Mock object as part of unit test.
– user10489212
Nov 20 '18 at 10:50
add a comment |
It seems, that you want to enumerate object
s:
public IEnumerator<object> GetEnumerator() {
yield return new object { "ABC123", "9999", "9999", "1000", "20180427120717123", false };
yield return new object { "ABC123", "9999", "9999", "1000", "20180427120717123", true };
}
I'm using the IEnumerator inside a class, where I reference it into the Source Attribute for a Mock object as part of unit test.
– user10489212
Nov 20 '18 at 10:50
add a comment |
It seems, that you want to enumerate object
s:
public IEnumerator<object> GetEnumerator() {
yield return new object { "ABC123", "9999", "9999", "1000", "20180427120717123", false };
yield return new object { "ABC123", "9999", "9999", "1000", "20180427120717123", true };
}
It seems, that you want to enumerate object
s:
public IEnumerator<object> GetEnumerator() {
yield return new object { "ABC123", "9999", "9999", "1000", "20180427120717123", false };
yield return new object { "ABC123", "9999", "9999", "1000", "20180427120717123", true };
}
answered Nov 20 '18 at 10:36


Dmitry BychenkoDmitry Bychenko
107k1093133
107k1093133
I'm using the IEnumerator inside a class, where I reference it into the Source Attribute for a Mock object as part of unit test.
– user10489212
Nov 20 '18 at 10:50
add a comment |
I'm using the IEnumerator inside a class, where I reference it into the Source Attribute for a Mock object as part of unit test.
– user10489212
Nov 20 '18 at 10:50
I'm using the IEnumerator inside a class, where I reference it into the Source Attribute for a Mock object as part of unit test.
– user10489212
Nov 20 '18 at 10:50
I'm using the IEnumerator inside a class, where I reference it into the Source Attribute for a Mock object as part of unit test.
– user10489212
Nov 20 '18 at 10:50
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53391073%2fhow-to-solve-this-error-no-best-type-found-for-implicitly-typed-array%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown