Goedel.Mesh.SSHProfile.From C# (CSharp) 메소드

From() 공개 정적인 메소드

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

Same methods

SSHProfile::From ( string _Input ) : SSHProfile