ASN1 .NET Frameworks
-
I am looking for a robust .NET targeting ASN1 framework. To my surprise I found only a few solutions and very little competition in this area. Downloaded the trial of one of the "leader" (Objective Systems). Opened the first code sample and got worried after reading just a few lines of code:
public static void Main(System.String[] args)
{
System.String filename = new System.Text.StringBuilder("message.dat").ToString();Is this framework as shallow as their C# skill? Did any one worked with Objective Systems ASN1C? Or may be someone can recommend an alternative? Thanks
-
I am looking for a robust .NET targeting ASN1 framework. To my surprise I found only a few solutions and very little competition in this area. Downloaded the trial of one of the "leader" (Objective Systems). Opened the first code sample and got worried after reading just a few lines of code:
public static void Main(System.String[] args)
{
System.String filename = new System.Text.StringBuilder("message.dat").ToString();Is this framework as shallow as their C# skill? Did any one worked with Objective Systems ASN1C? Or may be someone can recommend an alternative? Thanks
That's really bad code, appropriate for "The Weird and The Wonderful" or "the daily WTF".
-
That's really bad code, appropriate for "The Weird and The Wonderful" or "the daily WTF".
Yeap, I could not believe my eyes neither. But this is true. The code fragment is from their official C# samples.