简体   繁体   中英

How does this .NET code work?

this code is part of NBuilder . I'm having a bad day .. and to prove it, I don't understand what this (simple) code is trying to do.

Here are the answers, with the code after it.

GetRandom.Phrase(5) == null or et or ut or do or elit or amet.. 
                       (nothing over 4 characters)
GetRandom.Phrase(4) == null or sit or sed or do .. 
                       (nothing over 3 characters)
GetRandom.Phrase(3) == null or et or ut or do  (nothing over 2 characters)
GetRandom.Phrase(2) == null 
GetRandom.Phrase(1) == null 

and the code...

private static readonly string[] latinWords = { "lorem", "ipsum", "dolor", 
    "sit", "amet", "consectetur", "adipisicing", "elit", "sed", "do",
    "eiusmod", "tempor", "incididunt", "ut", "labore", "et", "dolore",
    "magna", "aliqua" };

public virtual string Phrase(int length)
{
    var count = latinWords.Length;
    var result = string.Empty;
    var done = false;
    while (!done)
    {
        var word = latinWords[Next(0, count - 1)];
        if (result.Length + word.Length + 1 > length)
        {
            done = true;
        }
        else
        {
            result += word + " ";
        }
    }
    return result.Trim();
}

I would have thought that the method should return x number of phrases or a random phrase of at least the length specified?

The code returns a random phrase less than or equal to the length specified, in characters. The key is this line:

if (result.Length + word.Length + 1 > length)

This guarantees that the length in characters of the result (including the newly-added word) doesn't exceed the value of length .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM