Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there Guava for C#? [closed]

Google'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

  1. How do I promote my project to get more developers / users / eyeballs?
  2. Do people think that this project is useful or am I just wasting my time?

Thanks for your time.

like image 674
Vijay Avatar asked Nov 26 '10 09:11

Vijay


People also ask

Is guava The richest source of vitamin C?

Summary Guavas are one of the richest food sources of vitamin C.

What are the 10 benefits of guava?

Improves Heart Health Potassium can help regulate and steady the heartbeat and high blood pressure while vitamin C keeps the blood vessels healthy. Eating pink-fleshed guava on regular basis can decrease the risk of cardiovascular diseases. Guava leaves tea helps lower ''bad'' cholesterol and triglycerides.

Who should not eat guava?

If you have diabetes and use guava, check your blood sugar carefully. Surgery: Guava might lower blood sugar. In theory, guava might increase the risk for bleeding or interfere with blood sugar control during and after surgical procedures. Stop using guava as a medicine at least 2 weeks before a scheduled surgery.

Is guava high in carbs?

Guava is very low in carbohydrates. A hundred grams serving of guava contains only about 14 grams of carbohydrates. According to various studies, including more low carbohydrate foods in diet could help boost sustainable weight loss.


1 Answers

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.

like image 189
Jon Skeet Avatar answered Oct 21 '22 16:10

Jon Skeet