Are these libraries okay to distribute with my C# application?
Posted
by HoNgOuRu
on Stack Overflow
See other posts from Stack Overflow
or by HoNgOuRu
Published on 2010-04-08T03:35:14Z
Indexed on
2010/04/08
3:43 UTC
Read the original article
Hit count: 265
I included these libraries or namespaces in my C# application and published the solution as freeware. I used Visual C# Express 2008.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Media;
using System.Management;
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Drawing.Text;
Is it okay to give the application as freeware or am I violating any license here???
© Stack Overflow or respective owner