Goedel.Mesh.SignedDeviceProfile.From C# (CSharp) Method

From() public static method

Create a new instance from untagged byte input. i.e. {... data ... }
public static From ( byte _Data ) : SignedDeviceProfile
_Data byte The input data.
return SignedDeviceProfile
		public static new SignedDeviceProfile From (byte[] _Data) {
			var _Input = System.Text.Encoding.UTF8.GetString(_Data);
			return From (_Input);
			}

Same methods

SignedDeviceProfile::From ( string _Input ) : SignedDeviceProfile