public void CreateZohoParameter() { ZohoParameter myParameter = new ZohoParameter(); myParameter.ParameterName = "DName"; myParameter.ZohoType = ZohoType.VarChar; myParameter.Direction = ParameterDirection.Input; myParameter.Size = 15; }
Public Sub CreateZohoParameter() Dim myParameter As New ZohoParameter() myParameter.ParameterName = "DName" myParameter.ZohoType = ZohoType.VarChar myParameter.Direction = ParameterDirection.Input myParameter.Size = 15 End Sub