Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
  1. Home
  2. Web Development
  3. ASP.NET
  4. Error:Type and identifier are both required in a foreach statement

Error:Type and identifier are both required in a foreach statement

Scheduled Pinned Locked Moved ASP.NET
help
2 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • R Offline
    R Offline
    rockram
    wrote on last edited by
    #1

    Code: foreach ( strSuggestion in functionReturnValue) { dblSimilarity = WordSimilarity(strWord, strSuggestion); i = intSuggestionCount; while (dblSimilarity > dblSimilarityArray(i)) { if (i < intSuggestionCount) { strSuggestionArray(i + 1) = strSuggestionArray(i); dblSimilarityArray(i + 1) = dblSimilarityArray(i); } strSuggestionArray(i) = strSuggestion; dblSimilarityArray(i) = dblSimilarity; i = i - 1; if (i == -1) { break; // TODO: might not be correct. Was : Exit Do } } } functionReturnValue = strSuggestionArray; return functionReturnValue; return functionReturnValue; }

    S 1 Reply Last reply
    0
    • R rockram

      Code: foreach ( strSuggestion in functionReturnValue) { dblSimilarity = WordSimilarity(strWord, strSuggestion); i = intSuggestionCount; while (dblSimilarity > dblSimilarityArray(i)) { if (i < intSuggestionCount) { strSuggestionArray(i + 1) = strSuggestionArray(i); dblSimilarityArray(i + 1) = dblSimilarityArray(i); } strSuggestionArray(i) = strSuggestion; dblSimilarityArray(i) = dblSimilarity; i = i - 1; if (i == -1) { break; // TODO: might not be correct. Was : Exit Do } } } functionReturnValue = strSuggestionArray; return functionReturnValue; return functionReturnValue; }

      S Offline
      S Offline
      Sherin Iranimose
      wrote on last edited by
      #2

      rockram wrote:

      foreach ( strSuggestion in functionReturnValue)

      foreach (String strSuggestion in functionReturnValue)

      EVEN THE WORD IMPOSSIBLE SAYS I M POSSIBLE.

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups