top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is the Difference between class library and Portable Class library in .Net?

+1 vote
673 views
What is the Difference between class library and Portable Class library in .Net?
posted Mar 4, 2015 by Shivaranjini

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

Class library:

The .NET Framework class library is a library of classes, interfaces, and value types that are included in the Microsoft .NET Framework SDK. This library provides access to system functionality and is designed to be the foundation on which .NET Framework applications, components, and controls are built.

Portable Class Library:

The Portable Class Library project enables you to write and build managed assemblies that work on more than one .NET Framework platform. You can create classes that contain code you wish to share across many projects, such as shared business logic, and then reference those classes from different types of projects.

answer Mar 4, 2015 by Manikandan J
...