I am trying to make a class library. So a sample code would be followed....
using System;
using CustomMath; //The parent library
using CustomMath.MathShapes.Shape1 // Child Library1
using CustomMath.MathShapes.Shape2; // Child library2
So let me clarify this more. First and foremost I know I would need to create a class library template. However, I don't know how to merge the child libraries to CustomMath. Do I make seperate libraries and then merge the 2 child libraries? If so then how do I merge them
