This iLogic code lets you select individual sketch entities to delete its constraints, then loops for your next selection untill you click No.
Repeat :
Dim oSC As SketchEntity = ThisApplication.CommandManager.Pick(SelectionFilterEnum.kSketchCurveFilter, "Select a Sketch Curve.")
oConsts = oSC.Constraints
For Each oGC As GeometricConstraint In oConsts
oGC.Delete
Next
For Each oDC As DimensionConstraint In oConsts
oDC.Delete
Next
oAns = MessageBox.Show("Keep going?","LOOP",MessageBoxButtons.YesNo,MessageBoxIcon.Question,MessageBoxDefaultButton.Button1)
If oAns = vbYes Then
GoTo Repeat
Else
Return
End If
Wesley Crihfield

(Not an Autodesk Employee)