Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
lfmundim committed Oct 26, 2021
1 parent 8771018 commit 1a78bb3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
Expand Up @@ -26,6 +26,12 @@ Then go ahead and consume it.
var zodiacSign = Zodiac.GetZodiacSignForDate(new DateTime(1950, 2, 12));
```

Another simpler option if all you need is the zodiac sign for a single date is:
```C#
var givenDateTime = new DateTime(1995, 8, 26);
var zodiacSign = givenDateTime.GetZodiacSign();
```

#### More examples
[Horoscope.Zodiac](https://github.com/ClydeDz/horoscope-nuget/blob/master/Src/Horoscope.TestConsole/ZodiacExamples.cs)
[Horoscope.ChineseZodiac](https://github.com/ClydeDz/horoscope-nuget/blob/master/Src/Horoscope.TestConsole/ChineseZodiacExamples.cs)
Expand Down

0 comments on commit 1a78bb3

Please sign in to comment.