Calling a method from sql server 2008: method static
This method 'GetStringFromNumber' is made of. net and I will use my database sql server 2008
When I declare as follows
public string GetNumberString (double value)
displays the following message
ConvertirNumerosALetra Procedure, Line 1Method, property or the 'GetStringFromNumber'class 'ConvertNumberToText.Utilities' from assembly 'ConvertNumberToText'is not static
So the solution is
public static string GetNumberString (double value)
I want to know why?
C#ASP.NETMicrosoft SQL ServerMicrosoft SQL Server 2008
Last Comment
Ryan McCauley
8/22/2022 - Mon
kaufmed
Can you provide an example of how you are calling it?