This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this questionGoogle's Guava is very useful for Java programming. I needed an equivalent library for C#. I could not find one. So I 开发者_开发百科have started a open source project to port Guava to C#. You can see the details for this project at its home page.
Now, Questions are
- How do I promote my project to get more developers / users / eyeballs?
- Do people think that this project is useful or am I just wasting my time?
Thanks for your time.
I wouldn't call it Guava for .NET - partly because a lot of the classes in Guava simply won't be needed. A lot of the Iterable
stuff is covered by LINQ, for example, and much of the resource handling is simpler too.
I suggest that if you want to create a new .NET library, you target specific needs - Guava is a grab-bag of utilities which have proven useful in Java, but the needs of .NET developers are different.
精彩评论