To convert large binary to hex use this code
const binaryData:=
{
'0000': '0',
'0001': '1',
'0010': '2',
'0011': '3',| // Code from Project 1 | |
| namespace FirstAssembly | |
| { | |
| public class FirstClass | |
| { | |
| protected internal static void FirstMethod() | |
| { | |
| Console.WriteLine("Private protected method called..."); | |
| } | |
| } |
| import { parseString, Builder } from "xml2js"; | |
| // Convert string/XML to JSON | |
| function toJson(xml: string) { | |
| parseString(xml, { explicitArray: false }, function(error, result) { | |
| console.log(result); | |
| }); | |
| } |
| using System; | |
| class MainClass | |
| { | |
| public static void Main (string[] args) | |
| { | |
| Console.WriteLine ("Hello, World!"); | |
| } | |
| } |
To convert large binary to hex use this code
const binaryData:=
{
'0000': '0',
'0001': '1',
'0010': '2',
'0011': '3',