Tagged Questions

3
votes
5answers
144 views

C#: Delegate Cannot be Declared Static

When I try to compile the following: public static delegate void MoveDelegate (Actor sender, MoveDirection args); I receive, as an error: "The modifer 'static' is not valid for the this item." ...
1
vote
1answer
227 views

How to declare ULARGE_INTEGER in c#?

Based upon this question How to declarate LARGE_INTEGER in C# with answer of: [StructLayout(LayoutKind.Absolute, Size=8)] struct LARGE_INTEGER { [FieldOffset(0)]public Int64 QuadPart; ...
0
votes
2answers
164 views

C# - Must declare the scalar variable “@ms_id” - Error

I'm writing an web-app that keeps track of deadlines. With this app you have to be able to update records that are being saved in an SQL DB. However I'm having some problem with my update in my ...
0
votes
5answers
111 views

why can't declare external variable on C# [closed]

I need to declare a variable inside an if statement. Then I will use it on outside. But as far as I know there is no external variables in C#. But I need to do this. I have two classes both derived ...
0
votes
3answers
465 views

Conditional declaring arrays in two-dimensional char array?

I have a two-dimensional char array declared with four strings. private static string string1 = "abcde"; private static string string2 = "ABCDE"; private static string string3 = "12345"; private ...
0
votes
1answer
528 views

How do i declare and use a C# object in an .ASPX file?

i am making a website using asp.net and C# and well i got stuck at the first hurdle, i found out that to use code you use the <% %> with asp but i dont get how i would create an object of my class ...